forked from Poheart/FACEIT-HELPER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (42 loc) · 954 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"manifest_version": 2,
"name": "FACEIT HELPER",
"description": "FACEIT user experience enhancement tools",
"version": "3.2.0",
"author": "Poheart & CullenIO",
"page_action": {
"default_icon": {
"19": "icons/icon19.png",
"38": "icons/icon38.png"
},
"default_title": "FACEIT Experience enhancement",
"default_popup": "popup.html"
},
"background": {
"scripts": ["background.js"],
"true": true
},
"content_scripts": [
{
"matches": ["https://www.faceit.com/*"],
"js": ["jquery.js", "main.js"],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"inject.js"
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": [
"<all_urls>",
"webRequest",
"webRequestBlocking",
"activeTab",
"storage",
"clipboardWrite"
]
}