History Blacklist

History Blacklist

Blacklists URLs from entering Chrome's history.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "History Blacklist",
  "version": "1.0.1",
  "description": "Blacklists URLs from entering Chrome's history.",
  "icons": {
    "16": "images/icon-16px.png",
    "32": "images/icon-32px.png",
    "48": "images/icon-48px.png",
    "64": "images/icon-64px.png",
    "128": "images/icon-128px.png",
    "192": "images/icon-192px.png"
  },
  "author": "Greg Smith <[email protected]>",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "homepage_url": "https://github.com/smrq/chrome-history-blacklist",
  "options_page": "options.html",
  "permissions": [
    "history",
    "storage"
  ]
}