Skip to content

Instantly share code, notes, and snippets.

@evandor
evandor / manifest.json
Created July 17, 2023 07:32
The Rest of the manifest file
"omnibox": { "keyword": "ts" },
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+B",
"mac": "Command+B"
}
}
},
"options_page": "www/index.html#/mainpanel/settings",
@evandor
evandor / manifest.json
Created July 17, 2023 07:28
The security section of the Manifest file
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'"
},
@evandor
evandor / manifest.json
Created July 17, 2023 07:24
Background Section for Manifest V2
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["tabsets-content-script.js", "content-script.js"]
}
],
@evandor
evandor / manifest.json
Created July 17, 2023 07:22
Background Section of Manifest file
"background": {
"service_worker": "background.js"
},
@evandor
evandor / manifest.json
Created July 17, 2023 07:20
Sidebar Action for Firefox Manifest V2
"sidebar_action": {
"default_icon": "icons/icon-48x48.png",
"default_title" : "Tabsets",
"default_panel": "www/index.html#/sidepanel"
},
@evandor
evandor / manifest.json
Created July 17, 2023 06:48
The Side Panel Section of the manifest file
"side_panel": {
"default_path": "www/sidepanel.html"
},
@evandor
evandor / manifest.json
Created July 17, 2023 06:40
the Host Permissions Section of the manifest file
"host_permissions": [
"<all_urls>",
"*://*/*"
],
@evandor
evandor / manifest.json
Created July 17, 2023 06:28
The Optional Permissions Section of the manifest file
"optional_permissions": [
"pageCapture",
"contextMenus",
"notifications",
"bookmarks"
],
@evandor
evandor / manifest.json
Created July 17, 2023 06:06
The Permissions Section of the manifest file
"permissions": [
"tabs",
"activeTab",
"alarms",
"scripting",
"sidePanel"
],
@evandor
evandor / manifest.json
Created July 17, 2023 05:59
The Icons Section of the manifest file
"icons": {
"16": "icons/icon-16x16.png",
"48": "icons/icon-48x48.png",
"128": "icons/icon-128x128.png"
},