-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
42 lines (35 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
{
"name": "Vasilek",
"version": "2.4.3",
"manifest_version": 2,
"description": " 'Василёк' - Система предупреждения о нападении, xcraft.ru",
"icons": {
"16" : "images/vasilek19.png",
"48" : "images/vasilek48.png",
"128": "images/vasilek128.png"
},
"permissions": [
"https://www.xcraft.ru/*",
"https://www.xcraft.net/*",
"https://www.xczu.com/*",
"contextMenus",
"storage"
],
"content_scripts": [
{
"matches": [ "https://xcraft.ru/*","http://xcraft.ru/*","https://xcraft.net/*","http://xcraft.net/*"],
"js": [ "js/main.js" , "js/jquery.js"],
"run_at": "document_end"
}
],
"web_accessible_resources": ["sound/*" ],
"browser_action": {
"default_title": "Vasilek",
"default_icon": "images/vasilek19.png",
"default_popup": "popup.html"
},
"background": {
"page": "background.html"
},
"options_page": "config.html"
}