forked from hallzy/youtube-playlist-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
41 lines (41 loc) · 1.36 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Search YouTube™ Playlist",
"version": "24.08.08-01",
"description": "Search for videos in a YouTube™ playlist.",
"background": {
"service_worker": "/js/background.js",
"pages": [
"popup.html"
]
},
"action": {
"default_title": "Search through this playlist",
"default_popup": "popup.html"
},
"icons": {
"48": "/img/icon-48.png",
"128": "/img/icon-128.png"
},
"permissions": [
"storage",
"declarativeContent",
"tabs",
"identity"
],
"host_permissions": [
"http://www.youtube.com/*",
"https://www.youtube.com/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"oauth2": {
"client_id": "984039572104-6nrjgkhhmnmal6t7iie9pc9djiqbvvln.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/youtube.readonly"
]
},
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAps65nbsGLdA55FuGZlpzPiZOdV+umwFK4gFOYnUDVcqp6NQ8OxGY5+qQ40tFlBgrwAbhCknHumgFQJyQBnYUhJNSO5macvXjXi1Fg6ZwWoaglQbbmXUWmXFsBq5DwR514qT/0ER70n35RpM1u7fgMGga8yHm3l3YjVRoEuN7qqHj1mRN3EbHnZUQbCT91JhZqfhaVkEEAvsznCZ3xbKDhCydSs5753cEk0tWeVFkTfE74FIoV9vi1nDHS2qjtcaNQSUmOTeBys6hZkXRgPDQl5NWwFd6xx85txQ4sbDMX0WNR9Qc/IAZlhigxaGr/UD0qTz0GpIRGU0KkNQEs/lw5wIDAQAB",
"manifest_version": 3
}