-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (52 loc) · 1.12 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "inopassaran",
"title": "¡No PASSarán",
"description": "Password manager and generator addon for browser",
"author": "BaNru",
"license": "MPL 2.0",
"version": "1.5-beta",
"homepage": "https://github.com/BaNru/iNoPASSaran",
"engines": {
"firefox": ">=38.0a1"
},
"main": "main.js",
"preferences": [{
"name": "salt",
"title": "Вторичный пароль (соль)",
"type": "string",
"value": ""
},{
"name": "algorithm",
"title": "Алгоритм шифрования",
"description": "help: https://github.com/BaNru/iNoPASSaran)",
"type": "string",
"value": ""
},{
"name": "data",
"title": "Settings Sites",
"type": "string",
"value": "",
"hidden": true
},{
"name": "hashtype",
"title": "Тип шифрования",
"type": "menulist",
"value": "md5",
"options": [{
"value": "md5",
"label": "MD5"
},{
"value": "ysp0",
"label": "You Shall Pass"
},{
"value": "ysp1",
"label": "You Shall Pass #"
},{
"value": "ysp2",
"label": "You Shall Pass Original"
},{
"value": "ysp3",
"label": "You Shall Pass Original #"
}]
}]
}