Emoji Selector

Emoji Selector

Love emojis? This chrome extension allows you to use fancy emojis anywhere on the Internet.
You no longer need to go to…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Emoji Selector",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+E",
        "mac": "Command+E",
        "chromeos": "Ctrl+E",
        "linux": "Ctrl+E"
      }
    }
  },
  "browser_action": {
    "default_icon": "emoji.png",
    "default_popup": "index.html",
    "default_title": "Emoji Selector"
  }
}