-
Notifications
You must be signed in to change notification settings - Fork 14
/
manifest.json
40 lines (40 loc) · 900 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
35
36
37
38
39
40
{
"name": "Url Helper",
"version": "1.1.0",
"author": "Coco",
"manifest_version": 2,
"description": "Easily handle page url parameters by a google extension",
"permissions": [
"http://*/",
"http://*/*",
"https://*/",
"https://*/*"
],
"icons": {
"16": "icon-16.png",
"128": "icon-128.png"
},
"browser_action": {
"default_icon": "icon-16.png",
"default_popup": "html/popup.html"
},
"background": {
"scripts": [
"js/background.js"
]
},
"content_scripts": [
{
"matches": [
"http://*/",
"https://*/",
"http://*/*",
"https://*/*"
],
"js": [
"js/jquery-2.2.4.min.js",
"js/url-handle.js"
]
}
]
}