History Janitor

History Janitor

A browser extension that automatically check every minutes if a URL in history contains a specified keywords and then delete it

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 Janitor",
  "version": "2.0",
  "author": "Francis Lacoste",
  "description": "A browser extension that automatically check every minutes if a URL in history contains a specified keywords and then delete it",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "history",
    "storage",
    "alarms"
  ],
  "options_page": "hj.html",
  "browser_action": {
    "default_icon": {
      "16": "img/icon16.png",
      "19": "img/icon128.png",
      "38": "img/icon128.png",
      "48": "img/icon48.png",
      "128": "img/icon128.png"
    },
    "default_title": "History Janitor"
  }
}