forked from Ultrawenis/WayFarer-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
34 lines (31 loc) · 831 Bytes
/
manifest.json
File metadata and controls
34 lines (31 loc) · 831 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": "Enables you to use NianticLab's Wayfarer in the way you want!",
"version": "2.2",
"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": ["js/mods/nominations.js", "js/mods/review.js", "js/mods/profile.js", "js/mods/header.js", "js/mods/all.js", "settings/settingsManager.js","main.js"],
"run_at": "document_start"
}
],
"permissions": [
"storage"
],
"web_accessible_resources": [
"pageJs/libs/*.js",
"pageJs/*.js",
"assets/*"
]
}