-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
24 lines (24 loc) · 1.26 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
{
"manifest_version": 2,
"name": "Yewtu.be",
"description": "This extension provides a simple and convenient way to automatically redirect YouTube video URLs to yewtu.be without the need for user interaction. The permissions needed are necessary to allow the extension to access and modify web requests made by the browser.\nTo function properly, this extension requires the following permissions:\n- activeTab: This permission allows the extension to access the currently active tab in the browser.\n- <all_urls>: This permission allows the extension to access all URLs, which is necessary to intercept and redirect requests made to YouTube video URLs.\n- webRequest and webRequestBlocking: These permissions allow the extension to use the webRequest API to intercept and block requests made by the browser. The webRequestBlocking permission is needed to block the original request and redirect it to yewtu.be.",
"version": "0.0.1",
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png",
"128": "icons/icon-128.png"
},
"background": {
"scripts": [
"background_script.js"
]
},
"permissions": [
"activeTab",
"<all_urls>",
"webRequest",
"webRequestBlocking"
]
}