Emoji Skin Tone Randomizer

Emoji Skin Tone Randomizer

Applies a random skintone to any skintone-eligible emoji that doesn't already have one.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Emoji Skin Tone Randomizer",
  "description": "Applies a random skintone to any skintone-eligible emoji that doesn't already have one.",
  "manifest_version": 2,
  "version": "1.0.2",
  "icons": {
    "128": "images/icon/icon-128.png",
    "256": "images/icon/icon-256.png",
    "512": "images/icon/icon-512.png"
  },
  "homepage_url": "https://github.com/DingoEatingFuzz/chrome-emoji-skintone-randomizer",
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "postprocess.js"
      ],
      "run_at": "document_end"
    }
  ]
}