From f7e36619df0f3ea2eed9a8465ffb50fddfa43f59 Mon Sep 17 00:00:00 2001 From: Tamius Han Date: Sat, 21 Oct 2023 14:04:02 +0200 Subject: [PATCH] remove manifestv2 --- src/manifest.v2.json | 60 -------------------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 src/manifest.v2.json diff --git a/src/manifest.v2.json b/src/manifest.v2.json deleted file mode 100644 index b6d3a5e..0000000 --- a/src/manifest.v2.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "manifest_version": 2, - "name": "Ultrawidify", - "description": "Removes black bars on ultrawide videos and offers advanced options to fix aspect ratio.", - "version": "5.99.5", - "applications": { - "gecko": { - "id": "{cf02b1a7-a01a-4e37-a609-516a283f1ed3}" - } - }, - "icons": { - "32":"res/icons/uw-32.png", - "64":"res/icons/uw-64.png" - }, - "browser_action": { - "default_title": "Ultrawidify", - "default_popup": "popup/popup.html" - }, - - "content_scripts": [{ - "matches": ["*://*/*"], - "js": [ - "common/lib/browser-polyfill.js", - "ext/uw.js" - ], - "all_frames": true - }], - - "background": { - "persistent": true, - "scripts": [ - "ext/uw-bg.js" - ] - }, - - "options_ui": { - "page": "options/options.html", - "browser_style": false, - "open_in_tab": true - }, - - "web_accessible_resources": [ - "./*", - "ext/*", - "res/fonts/*", - "res/css/*", - "res/img/settings/about-bg.png", - "res/icons/*", - "res/img/*", - "csui/*" - ], - "permissions": [ - "storage", - "activeTab", - "" - ], - "optional_permissions": [ - "downloads" - ] -}