-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
49 lines (49 loc) · 1019 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
41
42
43
44
45
46
47
48
49
{
"manifest_version": 2,
"name": "Lightspeed Filter Agent",
"description": "Lightspeed Filter Agent for Chrome",
"version": "3.7.0.1724395099",
"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",
"proxy"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": true,
"js": [
"in_page.js"
]
}
],
"background": {
"scripts": [
"main.js"
]
},
"web_accessible_resources": [
"*.png"
],
"incognito": "spanning",
"update_url": "https://lsrelay-extensions-production.s3.amazonaws.com/chrome-filter/6d1314a021a4f3e7b0a27aa37cc4ccbb1484a5e92dc878e5cb3eb239249e6ee9/ChromeFilter.xml"
}