-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
30 lines (29 loc) · 864 Bytes
/
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
{
"name": "Form Filler",
"version": "1.2.0",
"key": "ackpeimfmiejdmhjpjhaaannpmcfcpll",
"manifest_version": 2,
"description": "Fills web forms for you.",
"minimum_chrome_version": "23.0.0",
"browser_action": {
"default_icon": "img/logo128x128.png",
"default_popup": "popup/popup.html",
"default_title": "Form Filler"
},
"options_page": "options.html",
"permissions": [
"storage"
],
"background": {
"scripts": ["bundles/bundled_background.js"],
"persistent": false
},
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": [ "bundles/bundled_formfiller.js" ],
"all_frames": true
}
]
}