OLD | NEW |
(Empty) | |
| 1 // |
| 2 // The values are hardcoded for now. |
| 3 // |
| 4 |
| 5 var Prefs = exports.Prefs = { |
| 6 enabled: true, |
| 7 patternsfile: "patterns.ini", |
| 8 patternsbackups: 5, |
| 9 patternsbackupinterval: 24, |
| 10 data_directory: "", |
| 11 savestats: false, |
| 12 privateBrowsing: false, |
| 13 subscriptions_fallbackerrors: 5, |
| 14 subscriptions_fallbackurl: "https://adblockplus.org/getSubscription?version=%V
ERSION%&url=%SUBSCRIPTION%&downloadURL=%URL%&error=%ERROR%&channelStatus=%CHANNE
LSTATUS%&responseStatus=%RESPONSESTATUS%", |
| 15 subscriptions_autoupdate: true, |
| 16 subscriptions_exceptionsurl: "https://easylist-downloads.adblockplus.org/excep
tionrules.txt", |
| 17 documentation_link: "https://adblockplus.org/redirect?link=%LINK%&lang=%LANG%"
, |
| 18 addListener: function() {} |
| 19 }; |
OLD | NEW |