{ "manifest_version": 3, "name": "Velox", "version": "0.1.0", "description": "Hands Firefox downloads to the Velox download manager. Collects the URL, headers and cookies; the daemon does the rest.", "browser_specific_settings": { "gecko": { "id": "velox@velox.download", "strict_min_version": "128.0", "data_collection_permissions": { "required": ["none"] } } }, "background": { "scripts": ["dist/background.js"], "type": "module" }, "action": { "default_popup": "dist/popup.html", "default_title": "Velox" }, "options_ui": { "page": "dist/options.html", "open_in_tab": true }, "content_scripts": [ { "matches": [""], "js": ["dist/content.js"], "run_at": "document_idle", "all_frames": true } ], "permissions": [ "webRequest", "webRequestBlocking", "downloads", "cookies", "contextMenus", "storage", "notifications", "nativeMessaging" ], "host_permissions": [""], "commands": { "velox-grab-current-tab": { "suggested_key": { "default": "Ctrl+Shift+U" }, "description": "Send the current tab's URL to Velox" } } }