-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
37 lines (37 loc) · 1.03 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
{
"name": "Youtube Subscriptions Transfer",
"description": "Transferring subscriptions from one YouTube account to another",
"version": "1.7",
"author": "[email protected]",
"homepage_url": "https://biplobsd.github.io/apps/view/yst.md",
"manifest_version": 3,
"icons": {
"16": "src/assets/icons/icon16.png",
"32": "src/assets/icons/icon32.png",
"48": "src/assets/icons/icon48.png",
"128": "src/assets/icons/icon128.png"
},
"content_scripts": [
{
"matches": ["https://www.youtube.com/*"],
"js": ["src/content/index.ts"]
}
],
"background": {
"service_worker": "src/background/index.ts"
},
"options_ui": {
"page": "src/options/options.html",
"open_in_tab": false
},
"action": {
"default_popup": "src/popup/popup.html",
"default_icon": {
"16": "src/assets/icons/icon16.png",
"32": "src/assets/icons/icon32.png",
"48": "src/assets/icons/icon48.png",
"128": "src/assets/icons/icon128.png"
}
},
"permissions": ["tabs", "identity", "storage"]
}