-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest_chrome.json
46 lines (46 loc) · 1.03 KB
/
manifest_chrome.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
{
"manifest_version": 3,
"version": "2.0.1",
"author": "Theo Costantini",
"name": "__MSG_APP_Name__",
"description": "__MSG_APP_Description__",
"homepage_url": "https://github.com/YellowFish085/al-search",
"icons": {
"16": "img/logo-16.png",
"32": "img/logo-32.png",
"48": "img/logo-48.png",
"96": "img/logo-96.png",
"128": "img/logo-128.png"
},
"default_locale": "en",
"permissions": [
"contextMenus",
"identity",
"notifications",
"storage"
],
"host_permissions": [
"*://anilist.co/*",
"*://graphql.anilist.co/*"
],
"background": {
"service_worker": "service-worker/service-worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*://animationdigitalnetwork.com/*",
"*://www.crunchyroll.com/*"
],
"js": [
"vendors/webextension-polyfill/browser-polyfill.min.js",
"shared/enums.js",
"content-script/content-script.js"
]
}
],
"action": {
"default_popup": "popup/popup.html"
}
}