Emojis - Emoji Keyboard

Emojis - Emoji Keyboard

Bring all emojis to use on sites by the easiest ways with various styles of multiple platforms

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "Emoji",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.6.4",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "icon48.png",
    "default_popup": "index.html"
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "emoji-maker.js",
        "emojis.js",
        "contentscript.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "bg.js",
      "ga.js"
    ]
  },
  "icons": {
    "16": "icon.png",
    "48": "icon48.png",
    "128": "icon48.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "web_accessible_resources": [
    "emoji-maker.js",
    "emojis.js",
    "contentscript.js",
    "css/emoji.css",
    "emoji-data/*.png"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+E",
        "mac": "Command+Shift+E",
        "chromeos": "Ctrl+Shift+E",
        "linux": "Ctrl+Shift+E"
      }
    }
  }
}