-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
executable file
·43 lines (41 loc) · 1.02 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
43
{
"name": "Demo extension name",
"version": "0.0.1",
"manifest_version": 2,
"description": "Demo boilerplate for extension",
"homepage_url": "http://abc.com",
"icons": {
"16": "icons/dec.png",
"48": "icons/dec.png",
"128": "icons/dec.png"
},
"default_locale": "en",
"background": {
"page": "src/bg/background.html",
"persistent": true
},
"browser_action": {
"default_icon": "icons/dec.png",
"default_title": "Boilerplate Extension",
"default_popup": "src/browser_action/browser_action.html"
},
"externally_connectable": {
"matches": ["http://localhost/*"]
},
"content_scripts": [
{
"matches": ["https://*/*", "http://*/*"],
"js": ["js/jquery/jquery.min.js","src/content/content_script.js","js/jquery/jquery_number.min.js"],
"css": ["css/style.css"],
"run_at": "document_end",
"match_about_blank": true
}
],
"permissions": [
"cookies",
"http://*/*",
"https://*/*",
"storage",
"tabs"
]
}