]> git.rmz.io Git - dotfiles.git/blob - dwb/userscripts/extension_loader.js
add dwb config
[dotfiles.git] / dwb / userscripts / extension_loader.js
1 //!javascript
2 //<formfiller___SCRIPT
3 extensions.load("formfiller", {
4 //<formfiller___CONFIG
5 // shortcut that gets and saves formdata
6 scGetForm : "efg",
7
8 // shortcut that fills a form
9 scFillForm : "eff",
10
11 // path to the formdata file
12 formData : data.configDir + "/forms",
13
14 // whether to use a gpg-encrypted file
15 useGPG : false,
16
17 // your GPG key ID (leave empty to use a symmetric cipher)
18 GPGKeyID : "",
19
20 // whether to use a GPG agent (requires non-empty GPGKeyID to work)
21 GPGAgent : false,
22
23 // additional arguments passed to gpg2 when encrypting the formdata
24 GPGOptEncrypt : "",
25
26 // additional arguments passed to gpg2 when decrypting the formdata
27 GPGOptDecrypt : "",
28
29 // whether to save the password in memory when gpg is used
30 keepPassword : true,
31
32 // whether to save the whole formdata in memory when gpg is used
33 keepFormdata : false
34
35 //>formfiller___CONFIG
36 });
37 //>formfiller___SCRIPT
38 //<userscripts___SCRIPT
39 extensions.load("userscripts", {
40 //<userscripts___CONFIG
41 // paths to userscripts, this extension will also load all scripts in
42 // $XDG_CONFIG_HOME/dwb/greasemonkey, it will also load all scripts in
43 // $XDG_CONFIG_HOME/dwb/scripts but this is deprecated and will be
44 // disabled in future versions.
45 scripts : []
46 //>userscripts___CONFIG
47 });
48 //>userscripts___SCRIPT