dotfiles/dwb/dwb.configdir/userscripts/extension_loader.js
Ian Adam Naval 432a58ec21 Add dwb.
2014-07-25 23:25:45 -04:00

76 lines
1.8 KiB
JavaScript

//!javascript
/*
* AUTOGENERATED - DO NOT EDIT THIS FILE, USE dwbem -E <extension> INSTEAD!
*/
//<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 : false,
// your GPG key ID (leave empty to use a symmetric cipher)
GPGKeyID : "",
// whether to use a GPG agent (requires non-empty GPGKeyID to work)
GPGAgent : false,
// 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
//<grabscrolling___SCRIPT
extensions.load("grabscrolling", {
//<grabscrolling___CONFIG
// Whether grab-scroll-mode is enabled by default
grabModeEnabled : true,
// Button to grab-scroll
grabButton : 1,
// Buttons to start grab-scroll-mode
// e.g. grabModeButtons : [ 1, 3 ],
grabModeButtons : [ 1 ],
// Clicktype to start grab-scroll-mode
// supported values are
// ClickType.click, ClickType.doubleClick and ClickType.tripleClick
grabModeClickType : ClickType.doubleClick,
// Buttons to end grab-scroll-mode
// e.g. normalModeButtons : [ 1, 3 ],
normalModeButtons: [ 1 ],
// Clicktype to end grab-scroll-mode
// supported values are
// ClickType.click, ClickType.doubleClick and ClickType.tripleClick
normalModeClickType : ClickType.doubleClick,
// Reverse scroll direction
reverse : false
//>grabscrolling___CONFIG
});
//>grabscrolling___SCRIPT