ultrawidify/src/manifest.json

69 lines
1.2 KiB
JSON

{
"manifest_version": 3,
"name": "Ultrawidify",
"description": "Removes black bars on ultrawide videos and offers advanced options to fix aspect ratio.",
"version": "5.99.6",
"icons": {
"32":"res/icons/uw-32.png",
"64":"res/icons/uw-64.png"
},
"action": {
"default_title": "Ultrawidify",
"default_popup": "popup/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"
]
},
"options_ui": {
"page": "options/options.html",
"browser_style": false,
"open_in_tab": true
},
"web_accessible_resources": [
{
"resources": [
"./*",
"ext/*",
"res/fonts/*",
"res/css/*",
"res/img/settings/about-bg.png",
"res/icons/*",
"res/img/*",
"csui/*"
],
"matches": [
"*://*/*"
]
}
],
"permissions": [
"storage",
"activeTab",
"scripting"
],
"host_permissions": [
"*://*/*"
],
"optional_permissions": [
"downloads"
]
}