OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 } | 100 } |
101 } | 101 } |
102 }; | 102 }; |
103 | 103 |
104 modules.prefs = {Prefs: new EventEmitter()}; | 104 modules.prefs = {Prefs: new EventEmitter()}; |
105 let prefs = { | 105 let prefs = { |
106 notifications_ignoredcategories: (params.showNotificationUI) ? ["*"] : [], | 106 notifications_ignoredcategories: (params.showNotificationUI) ? ["*"] : [], |
107 notifications_showui: params.showNotificationUI, | 107 notifications_showui: params.showNotificationUI, |
108 shouldShowBlockElementMenu: true, | 108 shouldShowBlockElementMenu: true, |
109 show_devtools_panel: true, | 109 show_devtools_panel: true, |
110 ui_warn_tracking: true, | |
111 subscriptions_exceptionsurl: "https://easylist-downloads.adblockplus.org/exc
eptionrules.txt", | 110 subscriptions_exceptionsurl: "https://easylist-downloads.adblockplus.org/exc
eptionrules.txt", |
112 subscriptions_exceptionsurl_privacy: "https://easylist-downloads.adblockplus
.org/exceptionrules-privacy-friendly.txt" | 111 subscriptions_exceptionsurl_privacy: "https://easylist-downloads.adblockplus
.org/exceptionrules-privacy-friendly.txt" |
113 }; | 112 }; |
114 for (let key of Object.keys(prefs)) | 113 for (let key of Object.keys(prefs)) |
115 { | 114 { |
116 Object.defineProperty(modules.prefs.Prefs, key, { | 115 Object.defineProperty(modules.prefs.Prefs, key, { |
117 get() | 116 get() |
118 { | 117 { |
119 return prefs[key]; | 118 return prefs[key]; |
120 }, | 119 }, |
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
591 }, | 590 }, |
592 filter: { | 591 filter: { |
593 text: "||example.com/some-annoying-popup$popup", | 592 text: "||example.com/some-annoying-popup$popup", |
594 whitelisted: false, | 593 whitelisted: false, |
595 userDefined: true, | 594 userDefined: true, |
596 subscription: null | 595 subscription: null |
597 } | 596 } |
598 }); | 597 }); |
599 }); | 598 }); |
600 }()); | 599 }()); |
OLD | NEW |