-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
34 lines (31 loc) · 852 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
30
31
32
33
34
{
"manifest_version": 2,
"name": "Droplet AutoFill",
"description": "This extension autofills the entered fields for testing purpose. Developed by : Prateek Jadhwani (http://www.prateekjadhwani.com)",
"version": "0.1",
"icons": {
"16": "droplet16.png",
"48": "droplet48.png",
"128": "droplet.png"
},
"options_page": "options.html",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_name": "Droplet AutoFill"
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["lib//jquery-1.10.2.min.js", "contentScript.js"]
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": [
"background",
"tabs"
]
}