-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
37 lines (37 loc) · 1.17 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
{
"name": "Fill-it",
"version": "1.0.2",
"short_name": "Fillit",
"description": "Fill HTML form with fake values.",
"permissions": ["storage", "http://*/*", "https://*/*", "tabs"],
"options_page": "options.html",
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_icon": {
"16": "img/icon16.png",
"24": "img/icon24.png",
"32": "img/icon32.png" ,
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"default_title": "Open source Form Filler by Florian Knibbe",
"default_popup": "popup.html"
},
"icons": {
"16": "img/icon16.png",
"24": "img/icon24.png",
"32": "img/icon32.png" ,
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["assets/jquery.js", "assets/randexp.js", "domManipulator.js"]
}
],
"manifest_version": 2
}