Moves the current tab to a new window on another monitor
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"action": {
"context_menus": {
"id": "open-in-incognito"
},
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"background": {
"service_worker": "background.js"
},
"commands": {
"closeAllIncognitoWindows": {
"description": "Close All Incognito",
"suggested_key": {
"default": "Ctrl+Shift+C"
}
},
"open-in-incognito": {
"description": "Open in Incognito",
"suggested_key": {
"default": "Ctrl+Shift+I"
}
}
},
"description": "Moves the current tab to a new window on another monitor",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"manifest_version": 3,
"name": "Dual Monitor Incognito",
"permissions": [
"tabs",
"windows",
"system.display",
"contextMenus",
"storage",
"activeTab"
],
"version": "1.4",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}