Inspect and view changes in Browser History Cleaner 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",
"manifest_version": 2,
"name": "Browser History Cleaner",
"short_name": "Browser History Cleaner",
"description": "Delete chrome browser history by date range and keywords",
"version": "0.0.4",
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"browser_action": {
"default_icon": "icons/16.png",
"default_title": "Browser History Cleaner"
},
"background": {
"scripts": [
"js/background.min.js",
"js/utils.min.js"
]
},
"permissions": [
"history"
],
"web_accessible_resources": [
"screens/index.html"
],
"content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google-analytics.com; object-src 'self' "
}