-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
46 lines (44 loc) · 1.08 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
44
45
46
{
"manifest_version": 2,
"name": "Ingress inappropriate agent report",
"description" : "Bad agent should be die.",
"version": "0.13",
"background": {
"scripts": [
"jquery.min.js",
"background.js"
]
},
"content_scripts": [{
"matches": [
"https://support.ingress.com/hc/en-us/requests*",
"https://support.ingress.com/hc/zh-tw/requests*"
],
"js": [
"jquery.min.js",
"content_script.js"
]
},{
"matches": [ "https://fuckagents.nctu.me/reports/v1/login*" ],
"js": [
"jquery.min.js",
"test.js"
]
},{
"matches": ["https://support.ingress.com/hc/en-us/articles/115009205887"],
"js": [
"jquery.min.js",
"pre_page.js"
]
}],
"browser_action": {
"default_icon": "noairplane.png",
"default_popup": "popup.html"
},
"permissions": [
"webRequest",
"activeTab",
"https://ajax.googleapis.com/",
"tabs"
]
}