-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
41 lines (41 loc) · 1.25 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
{
"manifest_version": 3,
"name": "Foxford Tools",
"description": "Расширение для того самого сайта Фокса",
"version": "1.3.3",
"homepage_url": "https://fox.itstpm.rocks/",
"permissions": ["storage", "activeTab", "scripting"],
"action": {
"default_popup": "index.html",
"default_icon": "src/assets/logo/round.png"
},
"icons": {
"16": "src/assets/logo/round_result16.png",
"32": "src/assets/logo/round_result32.png",
"48": "src/assets/logo/round_result48.png",
"64": "src/assets/logo/round_result64.png",
"96": "src/assets/logo/round_result96.png",
"128": "src/assets/logo/round_result128.png"
},
"content_scripts": [
{
"matches": ["https://foxford.ru/*"],
"js": ["src/chrome-scripts/content.js"]
}
],
"background": {
"service_worker": "src/chrome-scripts/service-worker.js",
"scripts": ["src/chrome-scripts/service-worker.js"]
},
"host_permissions": ["https://foxford.ru/*"],
"externally_connectable": {
"matches": ["https://foxford.ru/*"]
},
"browser_specific_settings": {
"gecko": {
"strict_min_version": "112.0",
"id": "[email protected]",
"update_url": "https://update.itstpm.rocks/firefox/updates.json"
}
}
}