-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
48 lines (48 loc) · 1.12 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
{
"manifest_version": 2,
"name": "NoLeary",
"version": "0.0.3",
"description": "Keep the Internet O'Leary free.",
"page_action" :
{
"default_icon" : "images/icon-19x19.png",
"default_title" : "Warning: O'Leary is on this page!"
},
"permissions": [
"tabs",
"storage"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"exclude_globs": [
"*://*trumpfilter.com*",
"*://*github.com*",
"*://*rrezel.ca*"
],
"js": ["js/jquery-3.1.1.min.js", "js/filter.js"],
"run_at": "document_idle",
"all_frames": false
}
],
"icons" : {
"16": "images/icon-16x16.png",
"19": "images/icon-19x19.png",
"48": "images/icon-48x48.png",
"128": "images/icon-128x128.png",
"130": "images/icon-130x130.png",
"550": "images/icon-550x550.png"
},
"background": {
"persistent": false,
"page": "background.html"
},
"options_ui" : {
"chrome_style": true,
"page": "options.html"
},
"content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}