Forget about this site

Forget about this site

Browser page action button that deletes cookies, local storage, browsing history and download history for the current website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "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"
    ]
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "256": "/icons/icon.png"
  },
  "page_action": {
    "default_icon": "/icons/icon.png",
    "browser_style": false
  },
  "options_ui": {
    "page": "/options.html",
    "browser_style": true
  },
  "commands": {
    "_execute_page_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+X"
      }
    }
  }
}