Emojify

Emojify

Emojify is an extension that let's you view and input Emojis in chrome on webpages! How to enter emojis: Click Emojify's button in…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Emojify",
  "version": "1.8",
  "manifest_version": 2,
  "icons": {
    "128": "img/icon_128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "css/emoji.css"
      ],
      "js": [
        "js/jquery.js",
        "js/emoji.js",
        "js/emojify.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "all_frames": false,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/emojiKeyboard.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/emoji/*",
    "js/keyboard.html",
    "css/keyboard.css"
  ],
  "browser_action": {
    "default_icon": {
      "19": "img/icon_19.png",
      "38": "img/icon_38.png"
    },
    "default_title": "Show Emoji Keyboard"
  },
  "background": {
    "scripts": [
      "js/backgroundscript.js"
    ]
  }
}