From cb168a4a26ce41618ccd2ba50b8e832658a2eed9 Mon Sep 17 00:00:00 2001 From: hyzen Date: Sat, 18 Apr 2026 20:39:24 +0530 Subject: [PATCH] Fix: Firefox support --- manifest.json | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/manifest.json b/manifest.json index 10c9c68..9178b01 100644 --- a/manifest.json +++ b/manifest.json @@ -1,19 +1,18 @@ { - "manifest_version": 3, - "name": "SharePoint Video Downloader", - "version": "2.0", - "description": "Captures SharePoint/OneDrive video stream URLs and generates download commands.", - "permissions": ["webRequest", "activeTab", "tabs", "storage"], - "host_permissions": [""], - "background": { - "service_worker": "background.js" - }, - "action": { - "default_popup": "popup.html", - "default_icon": { - "16": "icon16.png", - "48": "icon48.png", - "128": "icon128.png" - } - } + "manifest_version": 2, + "name": "SharePoint Video Downloader", + "version": "2.0", + "description": "Captures SharePoint/OneDrive video stream URLs and generates download commands.", + "permissions": ["webRequest", "activeTab", "tabs", "storage", ""], + "background": { + "scripts": ["background.js"] + }, + "browser_action": { + "default_popup": "popup.html", + "default_icon": { + "16": "icon16.png", + "48": "icon48.png", + "128": "icon128.png" + } + } }