Inspect and view changes in Stealth Browser 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
{
"manifest_version": 3,
"name": "Stealth Browser",
"version": "2.1",
"description": "Stealth Browser hides tabs, clears cookies, fakes history, and blocks ads with a sleek UI.",
"permissions": [
"tabs",
"storage",
"browsingData",
"history",
"declarativeNetRequest",
"scripting",
"activeTab",
"cookies"
],
"host_permissions": [
"http://*/*",
"https://*/*",
"<all_urls>",
"file:///*"
],
"background": {
"service_worker": "background.js"
},
"commands": {
"toggle-ghost-mode": {
"suggested_key": {
"default": "Ctrl+Shift+X"
},
"description": "Toggle Stealth Mode"
}
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"declarative_net_request": {
"rule_resources": [
{
"id": "adblock_rules",
"enabled": true,
"path": "rules.json"
}
]
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"css": [
"content.css"
],
"js": [
"content.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}