Emoji Keyboard 2021 - for Chrome Browser

Emoji Keyboard 2021 - for Chrome Browser

Copy and past emojies. New emoji collections such as Smileys, Activity and Sports, Symbols and etc.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.1.0",
  "default_locale": "en",
  "manifest_version": 2,
  "short_name": "Emoji Keyboard",
  "browser_action": {
    "default_icon": "icon48.png",
    "default_popup": "index.html"
  },
  "background": {
    "page": "index.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "chromeos": "Alt+Shift+E",
        "linux": "Alt+Shift+E",
        "mac": "Alt+Shift+E",
        "windows": "Alt+Shift+E"
      }
    }
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "gcm",
    "cookies"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "web_accessible_resources": [
    "icon.png"
  ]
}