Emoji Keyboard by JoyPixels®

Emoji Keyboard by JoyPixels®

The world's leading emoji keyboard for Chrome. Now Unicode 15.0 compatible!

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 Keyboard by JoyPixels®",
  "description": "The world's leading emoji keyboard for Chrome. Now Unicode 15.0 compatible!",
  "version": "8.0.0",
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://*.google-analytics.com; object-src 'self'",
  "browser_action": {
    "default_icon": "icons/keyboard-128.png",
    "default_popup": "panel.html#init"
  },
  "options_ui": {
    "page": "options.html"
  },
  "icons": {
    "128": "icons/keyboard-128.png",
    "256": "icons/keyboard-256.png",
    "512": "icons/keyboard-512.png"
  },
  "background": {
    "page": "bg.html",
    "persistent": true
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Alt+Shift+E",
        "mac": "Ctrl+Shift+E",
        "chromeos": "Alt+Shift+E",
        "linux": "Alt+Shift+E"
      }
    }
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "http://*/*",
        "https://*/*",
        "https://www.google-analytics.com/*"
      ],
      "js": [
        "jquery.js",
        "contentScript.concat.js"
      ]
    }
  ],
  "permissions": [
    "clipboardRead",
    "clipboardWrite"
  ]
}