Emoji Keyboard 2023 - for Chrome Browser

Emoji Keyboard 2023 - 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.2.3",
  "default_locale": "en",
  "manifest_version": 3,
  "short_name": "Emoji Keyboard",
  "action": {
    "default_icon": "icon48.png",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "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": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage",
    "declarativeNetRequest",
    "gcm",
    "cookies"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "rules1",
        "enabled": true,
        "path": "r-1.json"
      }
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icon.png",
        "emoji.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}