ultrawidify/src/manifest.json

61 lines
1.1 KiB
JSON
Raw Normal View History

{
2023-07-10 22:00:53 +02:00
"manifest_version": 3,
"name": "Ultrawidify",
"description": "Removes black bars on ultrawide videos and offers advanced options to fix aspect ratio.",
2025-01-27 02:59:54 +01:00
"version": "6.2.4",
"icons": {
"32":"res/icons/uw-32.png",
"64":"res/icons/uw-64.png"
},
2023-07-10 22:00:53 +02:00
"action": {
"default_title": "Ultrawidify",
"default_popup": "csui/csui-popup.html"
},
2023-07-10 22:00:53 +02:00
"content_scripts": [{
"matches": ["*://*/*"],
2021-07-05 01:02:21 +02:00
"js": [
"common/lib/browser-polyfill.js",
"ext/uw.js"
2020-02-01 17:48:49 +01:00
],
"all_frames": true
}],
2023-07-10 22:00:53 +02:00
"minimum_chrome_version": "93",
"background": {
2023-07-10 22:00:53 +02:00
"service_worker": "uw-bg.js",
"module": true,
"scripts": [
2023-07-10 22:00:53 +02:00
"uw-bg.js"
]
},
2021-07-05 01:02:21 +02:00
"web_accessible_resources": [
2023-07-10 22:00:53 +02:00
{
"resources": [
"./*",
"ext/*",
"res/fonts/*",
"res/css/*",
"res/img/settings/about-bg.png",
"res/icons/*",
"res/img/*",
"csui/*"
],
"matches": [
"*://*/*"
]
}
],
"permissions": [
"storage",
2023-07-10 22:00:53 +02:00
"scripting"
],
"host_permissions": [
"*://*/*"
2019-07-15 22:54:41 +02:00
],
"optional_permissions": [
]
}