From 11b8108e323a599fb4fa699019c4aa5eb348e886 Mon Sep 17 00:00:00 2001 From: Sreecharan Date: Fri, 14 Jan 2022 20:55:24 +0530 Subject: [PATCH] Create manifest.firefox.json --- src/manifest.firefox.json | 53 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 src/manifest.firefox.json diff --git a/src/manifest.firefox.json b/src/manifest.firefox.json new file mode 100644 index 0000000..c85360b --- /dev/null +++ b/src/manifest.firefox.json @@ -0,0 +1,53 @@ +{ + "name": "Omni", + "description": "Supercharge Chrome with commands, shortcuts, and more", + "offline_enabled": true, + "version": "1.2.5", + "manifest_version": 2, + "browser_specific_settings": { + "gecko": { + "id": "hi@alyssax.com" + } + }, + "action": { + "icons": { + "16": "assets/logo-16.png", + "48": "assets/logo-48.png", + "128": "assets/logo-128.png" + } + }, + "icons": { + "16": "assets/logo-16.png", + "48": "assets/logo-48.png", + "128": "assets/logo-128.png" + }, + "commands": { + "open-omni": { + "suggested_key": { + "default": "Ctrl+Shift+K" + }, + "description": "Send a 'toggle-feature' event" + } + }, + "background": { + "scripts": ["background.js"] + }, + + "content_scripts": [ + { + "matches": [ + "" + ], + "run_at": "document_end", + "js": ["jquery.js", "content.js"], + "css": ["content.css"] + } + ], + "web_accessible_resources": [ + "content.html", "assets/*", "popup.css", "popup.js" + ], + "permissions": [ + "tabs", "activeTab", "bookmarks", "browsingData", "history", "scripting" + ] + } +