+++ /dev/null
-//!javascript
-//<formfiller___SCRIPT
-extensions.load("formfiller", {
-//<formfiller___CONFIG
-// shortcut that gets and saves formdata
-scGetForm : "efg",
-
-// shortcut that fills a form
-scFillForm : "eff",
-
-// path to the formdata file
-formData : data.configDir + "/forms",
-
-// whether to use a gpg-encrypted file
-useGPG : true,
-
-// your GPG key ID (leave empty to use a symmetric cipher)
-GPGKeyID : "EBC85A93",
-
-// whether to use a GPG agent (requires non-empty GPGKeyID to work)
-GPGAgent : true,
-
-// additional arguments passed to gpg2 when encrypting the formdata
-GPGOptEncrypt : "",
-
-// additional arguments passed to gpg2 when decrypting the formdata
-GPGOptDecrypt : "",
-
-// whether to save the password in memory when gpg is used
-keepPassword : true,
-
-// whether to save the whole formdata in memory when gpg is used
-keepFormdata : false
-
-//>formfiller___CONFIG
-});
-//>formfiller___SCRIPT
-//<userscripts___SCRIPT
-extensions.load("userscripts", {
-//<userscripts___CONFIG
- // paths to userscripts, this extension will also load all scripts in
- // $XDG_CONFIG_HOME/dwb/greasemonkey, it will also load all scripts in
- // $XDG_CONFIG_HOME/dwb/scripts but this is deprecated and will be
- // disabled in future versions.
- scripts : []
-//>userscripts___CONFIG
-});
-//>userscripts___SCRIPT
-//<adblock_subscriptions___SCRIPT
-extensions.load("adblock_subscriptions", {
-//<adblock_subscriptions___CONFIG
-
-// Shortcut to subscribe to a filterlist
-scSubscribe : null,
-// Command to subscribe to a filterlist
-cmdSubscribe : "adblock_subscribe",
-
-// Shortcut to unsubscribe from a filterlist
-scUnsubscribe : null,
-
-// Command to unsubscribe from a filterlist
-cmdUnsubscribe : "adblock_unsubscribe",
-
-// Shortcut to update subscriptions and reload filter rules
-// Note that dwb will also update all subscriptions on startup
-scUpdate : null,
-
-// Command to update subscriptions and reload filter rules
-// Note that dwb will also update all subscriptions on startup
-cmdUpdate : "adblock_update",
-
-// Path to the filterlist directory, will be created if it doesn't exist.
-filterListDir : data.configDir + "/adblock_lists"
-//>adblock_subscriptions___CONFIG
-});
-//>adblock_subscriptions___SCRIPT