Index: lib/prefs.js |
=================================================================== |
--- a/lib/prefs.js |
+++ b/lib/prefs.js |
@@ -133,14 +133,6 @@ |
* @type {boolean} |
*/ |
defaults.hidePlaceholders = true; |
-/** |
- * Whether to suppress the first run page. This preference isn't |
- * set by the extension but can be pre-configured externally. |
- * |
- * @see https://adblockplus.org/development-builds/suppressing-the-first-run-page-on-chrome |
- * @type {boolean} |
- */ |
-defaults.suppress_first_run_page = false; |
/** |
* Whether notification opt-out UI should be shown. |
@@ -163,6 +155,24 @@ |
defaults.show_devtools_panel = true; |
/** |
+ * Whether to suppress the first run page. This preference isn't |
+ * set by the extension but can be pre-configured externally. |
+ * |
+ * @see https://adblockplus.org/development-builds/suppressing-the-first-run-page-on-chrome |
+ * @type {boolean} |
+ */ |
+defaults.suppress_first_run_page = false; |
+ |
+/** |
+ * Additonal subscriptions to be automatically added when the extension is |
+ * loaded. This preference isn't set by the extension but can be pre-configured |
+ * externally. |
+ * |
+ * @type {string[]} |
+ */ |
+defaults.additional_subscriptions = []; |
+ |
+/** |
* @namespace |
* @static |
*/ |