-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
32 lines (32 loc) · 1.11 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
{
"name": "YouTube Toolkit",
"description" : "Toolkit for improving the Youtube experience.",
"version": "3.0.0",
"manifest_version": 3,
"action": {
"default_popup": "playlist-select.html"
},
"permissions": [
"tabs",
"identity",
"storage"
],
"host_permissions": [
"https://*.youtube.com/*"
],
"background": {
"service_worker": "service-worker.js"
},
"oauth2": {
"client_id": "728338904892-vba6oa3hd1buj5s58najabsa5rm0m4ri.apps.googleusercontent.com",
"scopes": ["https://www.googleapis.com/auth/youtube.force-ssl"]
},
"content_scripts": [
{
"matches": ["https://*.youtube.com/*"],
"all_frames": true,
"js": ["video-selector-injected.js"]
}
],
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgAcLYrzj7zKrfEh350jr28cAtNbbtrKMotK+bTATTBnresliv+o6GbuErVIym9jbHcRiYkBoTI7bfkBMns8sikumJ2lea7OtrZ7K0+FpUf/bYYa34rFUrbeRBm6+wHZHI4NccRYD0CXcbFwA4fQ/WPUvgbGyEwv2bnci6fm/wzB2n9fqb61YqnwUdMCuTvO6O3cX6zWX9VldDXinCBrQ4jDPy6wBKo1iRO44tAF8VE/qhuTrhe0/jKi9wyMw0YFFJ+roG+xYxI+ryP6ZnehyZ+J4vMoYmO9uVDYxZgvEB56tHyXppb206SZzG8Snk8xZYcTgXhx3YgltXZww/HMIkwIDAQAB"
}