Smiley Caret: Text to Emoji

Smiley Caret: Text to Emoji

Turns emoticons :) to emoji 🙂 and provides lookup directly in the input field you’re typing in.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Smiley Caret: Text to Emoji",
  "version": "1.1.1",
  "author": "Hristiyan Dodov",
  "description": "Turns emoticons :) to emoji 🙂 and provides lookup directly in the input field you’re typing in.",
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "browser_action": {},
  "permissions": [
    "storage",
    "https://twemoji.maxcdn.com/"
  ],
  "background": {
    "scripts": [
      "main/js/event.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "css": [
        "main/css/style.css"
      ],
      "js": [
        "main/js/content.js"
      ],
      "matches": [
        "file:///*",
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "options_page": "options/index.html"
}