Create manifest.firefox.json

This commit is contained in:
Sreecharan 2022-01-14 20:55:24 +05:30 committed by GitHub
parent 4821163a9e
commit 11b8108e32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

53
src/manifest.firefox.json Normal file
View file

@ -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": [
"<all_urls>"
],
"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"
]
}