Inspect and view changes in Touch & Clean 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_extName__",
"version": "1.3",
"manifest_version": 2,
"description": "__MSG_extDescription__",
"default_locale": "en",
"icons": {
"19": "images/icon_19.png",
"38": "images/icon_38.png",
"128": "images/icon_128.png"
},
"browser_action": {
"default_title": "__MSG_popupTitle__",
"default_popup": "html/popup.html",
"default_icon": {
"19": "images/icon_19.png",
"38": "images/icon_38.png"
}
},
"background": {
"scripts": [
"js/background.js"
],
"persistent": true
},
"options_page": "html/settings.html",
"web_accessible_resources": [
"images/icon_128.png"
],
"permissions": [
"contextMenus",
"storage",
"browsingData",
"tabs",
"history",
"cookies",
"downloads",
"notifications"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}