Emoji Censor

Emoji Censor

Redacts all emoji characters on a page, replacing them with black boxes

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Emoji Censor",
  "version": "1.2.2",
  "description": "Redacts all emoji characters on a page, replacing them with black boxes",
  "manifest_version": 2,
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "64": "icons/icon-64.png",
    "128": "icons/icon-128.png",
    "256": "icons/icon-256.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icons/icon-32.png",
    "default_title": "Censor all emoji"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "all_frames": true,
      "js": [
        "emoji-censor.js",
        "emoji-censor-comms.js"
      ]
    }
  ],
  "permissions": [
    "<all_urls>"
  ]
}