Click Censor

Click Censor

Censor a selected text on the whole page with a right click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Click Censor",
  "description": "Censor a selected text on the whole page with a right click",
  "version": "1.0.1",
  "homepage_url": "https://github.com/JuroOravec/click-censor",
  "permissions": [
    "activeTab",
    "contextMenus",
    "<all_urls>"
  ],
  "browser_action": {
    "default_title": "Click Censor"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "mark.min.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "48": "icon.png"
  }
}