From f406414fad1767b9f63ff6cb7031745ce7330a3a Mon Sep 17 00:00:00 2001 From: jimmyGALLAND Date: Sun, 24 May 2026 16:28:25 +0200 Subject: [PATCH] feat: add Firefox Android compatibility to manifest - Move notifications and contextMenus to optional_permissions - Set options_ui open_in_tab to true (required on Android) - Add gecko_android with strict_min_version 113.0 - Bump version to 1.1.1 --- src/manifest.json | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/manifest.json b/src/manifest.json index 08d8120..2322ce2 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,18 +1,19 @@ { "manifest_version": 3, "background": { - "service_worker": "background.js", "scripts": [ "background.js" ] }, "name": "YTPTube Extension", - "version": "1.1.0", + "version": "1.1.1", "description": "Add URLs to YTPTube instance", "permissions": [ "activeTab", + "storage" + ], + "optional_permissions": [ "contextMenus", - "storage", "notifications" ], "optional_host_permissions": [ @@ -28,7 +29,7 @@ }, "options_ui": { "page": "options.html", - "open_in_tab": false + "open_in_tab": true }, "action": { "default_title": "Add URL to YTPTube", @@ -43,15 +44,18 @@ "browser_specific_settings": { "gecko": { "id": "ytptube@arabcoders.org", - "strict_min_version": "128.0", + "strict_min_version": "113.0", "data_collection_permissions": { "required": [ "none" ] } + }, + "gecko_android": { + "strict_min_version": "113.0" } }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self';" } -} \ No newline at end of file +}