-
Notifications
You must be signed in to change notification settings - Fork 10
/
manifest.json
42 lines (42 loc) · 1.12 KB
/
manifest.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
{
"applications": {
"gecko": {
"id": "simpleformfill@sblask",
"strict_min_version": "57.0"
}
},
"author": "Sebastian Blask",
"background": {
"scripts": [
"browser-polyfill.js",
"util.js",
"background.js"
]
},
"browser_action": {
"browser_style": false,
"default_icon": "icon.svg",
"default_popup": "options/options.html",
"default_title": "Simple Form Fill"
},
"description": "Enter text into input fields by choosing items from the context menu or using the optional autocomplete.",
"homepage_url": "https://github.com/sblask/webextension-simple-form-fill",
"icons": {
"16": "icon-16x16.png",
"32": "icon-32x32.png",
"48": "icon-48x48.png",
"64": "icon-64x64.png",
"128": "icon-128x128.png"
},
"manifest_version": 2,
"name": "Simple Form Fill",
"options_ui": {
"page": "options/options.html"
},
"permissions": [
"<all_urls>",
"contextMenus",
"storage"
],
"version": "2.2.1"
}