-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
56 lines (53 loc) · 1.28 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "LOL Smart Ping",
"description": "Add smart ping of League of Legends on Chrome !",
"version": "1.0",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": ["storage", "activeTab", "tabs", "scripting"],
"action": {
"default_icon": {
"16": "/images/logo16.png",
"32": "/images/logo32.png",
"48": "/images/logo48.png",
"128": "/images/logo128.png"
}
},
"icons": {
"16": "/images/logo16.png",
"32": "/images/logo32.png",
"48": "/images/logo48.png",
"128": "/images/logo128.png"
},
"host_permissions": [
"https://*/",
"http://*/"
],
"web_accessible_resources": [{
"resources": [
"/images/logo16.png",
"/images/logo32.png",
"/images/logo48.png",
"/images/logo128.png",
"/images/logo128Danger.png",
"/images/logo128Omw.png",
"/images/logo128Wtf.png",
"/images/logo128Help.png",
"/images/logo128Normal.png",
"/images/LoL_ping_menu.png",
"/images/pingDanger.png",
"/images/pingOmw.png",
"/images/pingHelp.png",
"/images/pingWtf.png",
"/images/pingNormal.png",
"/sounds/pingDanger.mp3",
"/sounds/pingOmw.mp3",
"/sounds/pingHelp.mp3",
"/sounds/pingWtf.mp3",
"/sounds/pingNormal.mp3"
],
"matches": ["<all_urls>"]
}]
}