Inspect and view changes in Incognito mode for Chrome 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
{
"version": "1.0",
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Incognito mode for Chrome",
"description": "Incognito mode for Chrome extension opens current tab in an incognito mode",
"permissions": [
"storage",
"contextMenus",
"activeTab",
"history"
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"background": {
"service_worker": "js/background.js"
},
"action": {
"default_icon": {
"38": "static/38.png",
"48": "static/48.png"
},
"default_title": "Open in Incognito"
},
"icons": {
"38": "static/38.png",
"48": "static/48.png",
"128": "static/128.png"
}
}