forked from nicolethenerd/mckayla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
28 lines (28 loc) · 908 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
{
"name": "McKayla Is Not Impressed",
"version": "1.0",
"manifest_version": 2,
"description": "McKayla is not impressed with random images as you browse the web.",
"icons": { "16": "icon_16.png",
"48": "icon_48.png",
"128": "icon_128.png"},
"content_scripts": [ {
"exclude_globs": [ ],
"include_globs": [ "*" ],
"js": [ "jquery-1.8.1.min.js",
"contentscript.js" ],
"matches": [ "http://*/*",
"https://*/*"
],
"exclude_matches": [
"https://www.google.com/search*",
"http://www.google.com/search*"
],
"run_at": "document_end"
} ],
"permissions": [
],
"web_accessible_resources": [
"mckayla.png"
]
}