Inspect and view changes in Tab Handler source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Tab Handler",
"version": "1.0.0",
"manifest_version": 3,
"description": "Group and move the browser tabs with ease.",
"icons": {
"128": "icons/logo128x128.png"
},
"homepage_url": "https://gitlab.com/jk09/edgetabhandler",
"permissions": [
"tabs",
"tabGroups"
],
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content-scripts/content.js"
]
}
],
"commands": {
"cmd-move-tab-to-new-window": {
"suggested_key": "",
"description": "Move the current tab to a new window."
},
"cmd-group-tabs": {
"suggested_key": "",
"description": "Group tabs based on their hostnames."
},
"cmd-ungroup-tabs": {
"suggested_key": "",
"description": "Ungroup all grouped tabs."
},
"cmd-separate-groups-into-windows": {
"suggested_key": "",
"description": "Separate each group into its own window."
}
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}