-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
33 lines (32 loc) · 944 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
{
"name": "XYETPO",
"version": "2.1.0",
"manifest_version": 3,
"description": "Presents the Moscow & St. Petersburg metro stations in a huyman readable format",
"author": "Tikhon Petrishchev, Arthur Khazbulatov, Xenia Gladchuk",
"permissions": [ "webNavigation" ],
"host_permissions": [ "https://*.yandex.ru/metro/*" ],
"content_scripts": [
{
"matches": [ "https://*.yandex.ru/metro/*" ],
"all_frames": true,
"js": [ "content_script.js" ],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [ "stations_data/*" ],
"matches": [ "https://*.yandex.ru/*" ]
}
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"128": "icons/128.png"
}
}