We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb00565 commit 4f91ba0Copy full SHA for 4f91ba0
chromium/background.js
@@ -40,21 +40,6 @@ for (r in rs) {
40
}
41
*/
42
43
-// Add the HTTPS Everywhere icon to the URL address bar.
44
-// TODO: Switch from pageAction to browserAction?
45
-function displayPageAction(tabId) {
46
- if (tabId !== -1) {
47
- chrome.tabs.get(tabId, function(tab) {
48
- if(typeof(tab) === "undefined") {
49
- log(DBUG, "Not a real tab. Skipping showing pageAction.");
50
- }
51
- else {
52
- chrome.pageAction.show(tabId);
53
54
- });
55
56
-}
57
-
58
59
var addNewRule = function(params, cb) {
60
if (all_rules.addUserRule(params)) {
0 commit comments