-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
51 lines (51 loc) · 1.04 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
47
48
49
50
51
{
"manifest_version": 2,
"name": "Lightspeed Filter Agent",
"description": "Lightspeed Filter Agent for Chrome",
"version": "3.0.0.1661431709",
"options_page": "options.html",
"icons": {
"16": "icon-16.png",
"128": "icon-128.png"
},
"permissions": [
"webRequest",
"<all_urls>",
"http://*/*",
"idle",
"background",
"https://*/*",
"tabs",
"storage",
"history",
"webRequestBlocking",
"identity",
"identity.email",
"management",
"enterprise.deviceAttributes",
"geolocation"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": true,
"js": [
"in_page.js"
]
}
],
"background": {
"scripts": [
"debug.js",
"doorman.js",
"main.js"
]
},
"web_accessible_resources": [
"*.png"
],
"incognito": "spanning",
"update_url": "https://lsrelay-extensions-production.s3.amazonaws.com/chrome-filter/06318242f0389dc531690213d0264c48e82a9faff1b6f46a71311a7795e3c4a8/ChromeFilter.xml"
}