Inspect and view changes in Button: Clear Browsing Data 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": "__MSG_appName__",
"short_name": "__MSG_appName__",
"description": "__MSG_appDescription__",
"version": "1.0.0",
"manifest_version": 2,
"default_locale": "en",
"icons": {
"16": "images/icon-16.png",
"19": "images/icon-19.png",
"32": "images/icon-32.png",
"38": "images/icon-38.png",
"128": "images/icon-128.png"
},
"background": {
"scripts": [
"scripts/background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": {
"19": "images/icon-19.png",
"38": "images/icon-38.png"
},
"default_title": "__MSG_openClearBrowserDataPage__"
},
"options_ui": {
"page": "pages/options.html",
"chrome_style": true
},
"permissions": [
"contextMenus",
"storage"
]
}