Index: background.js |
diff --git a/background.js b/background.js |
index fa78123054da5bb29352923c3496ec8a049eecde..b42702633570b04c1814792e18e5cb209b2b9969 100644 |
--- a/background.js |
+++ b/background.js |
@@ -70,8 +70,7 @@ |
addSubscription: false, |
filterError: false, |
downloadStatus: "synchronize_ok", |
- showNotificationUI: false, |
- safariContentBlocker: false |
+ showNotificationUI: false |
}; |
updateFromURL(params); |
@@ -98,7 +97,6 @@ |
var prefs = { |
notifications_ignoredcategories: (params.showNotificationUI) ? ["*"] : [], |
notifications_showui: params.showNotificationUI, |
- safari_contentblocker: false, |
shouldShowBlockElementMenu: true, |
show_devtools_panel: true, |
subscriptions_exceptionsurl: "https://easylist-downloads.adblockplus.org/exceptionrules.txt" |
@@ -475,13 +473,4 @@ |
} |
}); |
}); |
- |
- if (params.safariContentBlocker) |
- { |
- global.safari = { |
- extension: { |
- setContentBlocker: function() {} |
- } |
- }; |
- } |
})(this); |