forked from abzubarev/web-developer-form-filler-ext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
31 lines (31 loc) · 823 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
{
"content_scripts" : [ {
"js" : [
"javascripts/jquery-1.9.1.min.js",
"javascripts/deserialize.js",
"javascripts/content_script.js",
"javascripts/mousetrap.min.js" ],
"matches" : [ "http://*/*", "https://*/*", "file:///*" ],
"run_at" : "document_start"
} ],
"name": "Web Developer Form Filler",
"version": "1.0.11",
"icons" : {
"16" : "images/16.png",
"48" : "images/48.png",
"128" : "images/128.png"},
"description": "This extension is used by developers to make it easy to fill forms",
"browser_action": {
"default_icon": "images/48.png",
"default_title": "Web Developer Form Filler",
"default_popup": "popup.html"
},
"background": {
"page": "background.html"
},
"permissions": [
"tabs",
"http://*/", "https://*/"
],
"manifest_version":2
}