Forget about this site

Page action button that deletes cookies, local storage, browsing history and download history for the website you’re visiting.
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": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "1.8.0",
  "homepage_url": "https://github.com/blaise-io/forget-about-this-site#readme",
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "tabs",
    "browsingData",
    "downloads",
    "history",
    "storage",
    "notifications"
  ],
  "background": {
    "scripts": [
      "/background.js"
    ]
  },
  "icons": {
    "256": "/icons/icon.png"
  },
  "page_action": {
    "default_icon": "/icons/icon.png"
  },
  "options_ui": {
    "page": "/options.html"
  },
  "commands": {
    "_execute_page_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+X"
      }
    }
  }
}