Inspect and view changes in Open in Incognito 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": "Open in Incognito",
"description": "⚜️ Open Tab, Page or Link in incognito mode.",
"version": "1.0",
"manifest_version": 2,
"homepage_url": "https://github.com/evghenic/open-in-incognito",
"icons": {
"16": "icons/icon.svg",
"32": "icons/icon.svg",
"48": "icons/icon.svg",
"64": "icons/icon.svg",
"96": "icons/icon.svg",
"128": "icons/icon.svg",
"256": "icons/icon.svg"
},
"incognito": "spanning",
"permissions": [
"contextMenus",
"activeTab"
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icons/icon.svg",
"default_title": "🛡️ Open in incognito mode"
}
}