Touch & Clean

Touch & Clean

Simple lite cleaner for developers and users. A tap should be enough to clean!

Merlin
Additional files are visible only to premium users

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'"
}