Author: Daniel Baumann Description: Disabling visually cluttering messages on popup menu. diff -Naurp privacybadger.orig/src/js/popup.js privacybadger/src/js/popup.js --- privacybadger.orig/src/js/popup.js +++ privacybadger/src/js/popup.js @@ -123,18 +123,7 @@ function showNagMaybe() { $outer.show(); } - if (POPUP_DATA.showLearningPrompt) { - _showLearningPrompt(); - - } else if (!POPUP_DATA.seenComic) { - chrome.tabs.query({active: true, currentWindow: true}, function (focusedTab) { - // Show the popup instruction if the active tab is not firstRun.html page - if (!focusedTab[0].url.startsWith(intro_page_url)) { - _showNag(); - } - }); - - } else if (POPUP_DATA.criticalError) { + if (POPUP_DATA.criticalError) { _showError(POPUP_DATA.criticalError); } }