61 lines
1.1 KiB
JSON
61 lines
1.1 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Ultrawidify",
|
|
"description": "Removes black bars on ultrawide videos and offers advanced options to fix aspect ratio.",
|
|
"version": "6.0.2",
|
|
"icons": {
|
|
"32":"res/icons/uw-32.png",
|
|
"64":"res/icons/uw-64.png"
|
|
},
|
|
"action": {
|
|
"default_title": "Ultrawidify",
|
|
"default_popup": "csui/csui-popup.html"
|
|
},
|
|
|
|
|
|
"content_scripts": [{
|
|
"matches": ["*://*/*"],
|
|
"js": [
|
|
"common/lib/browser-polyfill.js",
|
|
"ext/uw.js"
|
|
],
|
|
"all_frames": true
|
|
}],
|
|
|
|
"minimum_chrome_version": "93",
|
|
"background": {
|
|
"service_worker": "uw-bg.js",
|
|
"module": true,
|
|
"scripts": [
|
|
"uw-bg.js"
|
|
]
|
|
},
|
|
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": [
|
|
"./*",
|
|
"ext/*",
|
|
"res/fonts/*",
|
|
"res/css/*",
|
|
"res/img/settings/about-bg.png",
|
|
"res/icons/*",
|
|
"res/img/*",
|
|
"csui/*"
|
|
],
|
|
"matches": [
|
|
"*://*/*"
|
|
]
|
|
}
|
|
],
|
|
"permissions": [
|
|
"storage",
|
|
"scripting"
|
|
],
|
|
"host_permissions": [
|
|
"*://*/*"
|
|
],
|
|
"optional_permissions": [
|
|
]
|
|
}
|