forked from m-h-c-t/mh-helper-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
44 lines (39 loc) · 1.05 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
{
"manifest_version": 2,
"author": "Jack Smith",
"name": "Jack's MouseHunt Helper",
"description": "This extension provides useful links and tracks MouseHunt horn calls for tools like rate calculators.",
"version": "18.10.14",
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"browser_action": {
"default_icon": "images/icon32.png",
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"*://www.mousehuntgame.com/*",
"storage",
"notifications"
],
"content_scripts": [{
"all_frames" : true,
"matches": ["*://www.mousehuntgame.com/*"],
"js": ["scripts/content.js"]
}],
"web_accessible_resources": [
"scripts/main.js",
"third_party/tsitus/bookmarkletloader",
"images/icon128.png"
],
"background": {
"scripts": ["scripts/background.js"]
},
"options_ui": {
"page": "options.html",
"chrome_style": true
}
}