Safe History

Safe History

Scans web pages you visit for adult or Not Safe For Work (NSFW) content and removes them from your history.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Safe History",
  "description": "Scans web pages you visit for adult or Not Safe For Work (NSFW) content and removes them from your history.",
  "version": "1.0.3",
  "manifest_version": 2,
  "permissions": [
    "contextMenus",
    "tabs",
    "history"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jquery-1.12.1.min.js",
        "inject.js"
      ]
    }
  ],
  "page_action": {
    "default_title": "Safe History",
    "default_popup": "page_action.html"
  },
  "icons": {
    "16": "data-filter-16.png",
    "32": "data-filter-32.png",
    "48": "data-filter-48.png",
    "128": "data-filter-128.png"
  }
}