-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmanifest.json
More file actions
34 lines (31 loc) · 824 Bytes
/
manifest.json
File metadata and controls
34 lines (31 loc) · 824 Bytes
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
{
"manifest_version": 2,
"name": "WayFarer+",
"description": "Adds functionality and style to NianticLabs Wayfarer",
"version": "1.1.1",
"browser_action": {
"default_icon": "icons/icon48.png",
"default_popup": "settings/popup.html",
"default_title": "WayFarer+"
},
"icons": {
"128": "icons/icon128.png",
"48": "icons/icon48.png",
"16": "icons/icon16.png"
},
"content_scripts": [
{
"matches": ["*://wayfarer.nianticlabs.com/*"],
"js": ["lib/jq/jquery-2.1.1.min.js", "lib/ga/ga.js", "js/options.js", "js/styler.js","js/mods/nominations.js", "js/mods/review.js", "main.js"],
"run_at": "document_start"
}
],
"permissions": [
"activeTab",
"storage",
"https://ajax.googleapis.com/"
],
"web_accessible_resources": [
"pageJs/*.js"
]
}