Inspect and view changes in Safe History 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Safe History",
"description": "Prevent storing browser history based on keywords you specify!",
"version": "0.1",
"manifest_version": 3,
"background": {
"service_worker": "public/js/background.js",
"type": "module"
},
"action": {
"default_popup": "public/popup.html",
"default_icon": {
"16": "public/assets/logo16.png",
"32": "public/assets/logo32.png",
"48": "public/assets/logo48.png",
"128": "public/assets/logo128.png"
}
},
"icons": {
"16": "public/assets/logo16.png",
"32": "public/assets/logo32.png",
"48": "public/assets/logo48.png",
"128": "public/assets/logo128.png"
},
"permissions": [
"storage",
"history"
]
}