History Blocker

History Blocker

Stop people from seeing your history!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "History Blocker",
  "manifest_version": 2,
  "version": "1.2.3",
  "description": "Stop people from seeing your history!",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [],
  "chrome_url_overrides": {
    "history": "history.html"
  },
  "icons": {
    "16": "icons/iconWeb.png",
    "32": "icons/iconWeb.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/iconWeb.png",
      "32": "icons/iconWeb.png"
    }
  },
  "commands": {
    "Open Fake History": {
      "suggested_key": {
        "default": "Ctrl+Shift+H",
        "mac": "Command+Shift+H"
      },
      "description": "Open a Fake History page"
    }
  }
}