Automatically open websites in incognito mode.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "__MSG_extension_name__",
"description": "__MSG_extension_description__",
"version": "0.7.0",
"default_locale": "en",
"permissions": [
"storage",
"tabs",
"history",
"webNavigation",
"bookmarks"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"web_accessible_resources": [
{
"resources": [
"bookmark.html"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}