-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
75 lines (75 loc) · 1.71 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"manifest_version": 3,
"name": "Маркетплейсер",
"description": "Сравнивает цены на товар на российских площадках",
"version": "1.8",
"author": {
"name": "Seorgiy",
"email": "[email protected]"
},
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"action": {},
"host_permissions": [
"https://www.dns-shop.ru/*",
"https://www.ozon.ru/*",
"https://market.yandex.ru/*",
"https://www.wildberries.ru/*",
"https://megamarket.ru/*",
"https://aliexpress.ru/*"
],
"content_scripts": [
{
"matches": [
"https://www.dns-shop.ru/*",
"https://market.yandex.ru/search?text=*",
"https://www.ozon.ru/*",
"https://www.wildberries.ru/*",
"https://megamarket.ru/*",
"https://aliexpress.ru/*"
],
"js": ["lib/messenger.js","lib/item.js"]
},
{
"matches": [
"https://www.dns-shop.ru/*"],
"js": ["markets/dns.js"]
},
{
"matches": [
"https://www.ozon.ru/*"],
"js": ["markets/ozon.js"]
},
{
"matches": [
"https://www.wildberries.ru/*"],
"js": ["markets/wildberries.js"]
},
{
"matches": [
"https://megamarket.ru/*"],
"js": ["markets/megamarket.js"]
},
{
"matches": [
"https://market.yandex.ru/*"],
"js": ["markets/yandex.js"]
},
{
"matches": [
"https://aliexpress.ru/*"],
"js": ["markets/aliexpress.js"]
}
],
"permissions": [
"storage",
"tabs"
]
}