-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
33 lines (33 loc) · 920 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
33
{
"manifest_version": 3,
"name": "Untrapped",
"version": "2.0.1",
"permissions": ["storage", "tabs"],
"host_permissions": ["https://*.youtube.com/*"],
"web_accessible_resources": [
{
"resources": [
"assets/untrapped.png",
"assets/untrapped.svg",
"https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js",
"https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
],
"matches": ["https://*.youtube.com/*"]
}
],
"content_scripts": [
{
"matches": ["https://*.youtube.com/*"],
"js": ["content.js"],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "assets/untrapped.png",
"default_popup": "popup.html",
"default_title": "Click here to change preferences for how you browse through YouTube"
}
}