Replace as You Type

Replace as You Type

Replace emoticons with emoji and other text replacement as you type -- now works on Facebook, WhatsApp, etc.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Replace as You Type",
  "version": "0.0.6",
  "description": "Replace emoticons with emoji and other text replacement as you type -- now works on Facebook, WhatsApp, etc.",
  "author": "Jack Kingsman <[email protected]>",
  "icons": {
    "16": "img/rayt16.png",
    "48": "img/rayt48.png",
    "128": "img/rayt128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "html/options.html",
  "permissions": [
    "storage"
  ]
}