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
42
43
44
|
{
"name": "LibRedirect",
"description": "__MSG_extensionDescription__",
"version": "1.4.8",
"manifest_version": 2,
"background": {
"page": "pages/background/background.html",
"persistent": true
},
"default_locale": "en",
"icons": {
"16": "assets/images/libredirect-16.png",
"32": "assets/images/libredirect-32.png",
"48": "assets/images/libredirect-48.png",
"128": "assets/images/libredirect-128.png"
},
"permissions": [
"storage",
"cookies",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"browser_action": {
"default_title": "LibRedirect",
"browser_style": false,
"default_popup": "pages/popup/popup.html",
"default_icon": {
"16": "assets/images/libredirect-16.png",
"32": "assets/images/libredirect-32.png",
"48": "assets/images/libredirect-48.png",
"128": "assets/images/libredirect-128.png"
}
},
"options_ui": {
"page": "pages/options/general/general.html",
"browser_style": false,
"open_in_tab": true
},
"web_accessible_resources": [
"assets/javascripts/helpers/youtube/piped-preferences.js",
"assets/javascripts/helpers/youtube/pipedMaterial-preferences.js"
]
}
|