CleanUp

CleanUp

Clear cache and refresh the page at the same time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CleanUp",
  "short_name": "CleanUp",
  "author": "Himesh Buch",
  "version": "1.0",
  "description": "Clear cache and refresh the page at the same time",
  "manifest_version": 2,
  "permissions": [
    "browsingData"
  ],
  "background": {
    "scripts": [
      "main.js"
    ]
  },
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png",
    "256": "icon_256.png"
  },
  "browser_action": {
    "default_icon": "icon_256.png"
  }
}