Emoji Keyboard

Emoji Keyboard

Emoji for Google Chrome Web. Copy-paste Emojis. Compatible Win, Mac, Linux, iOS, Android. Works on website/App. Smileys - Stickers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_chrome_extension_name__",
  "description": "__MSG_chrome_extension_description__",
  "version": "5.7",
  "default_locale": "en",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAy8QBTutsTLnMSRFKpIiDP/V3gqKVRScf8dmJTmC3qSywPjWXyvRdguSNRj7JGyLatHESHEynYUpvUokgIdv/QZ3wE3dG88pk5cFJb+vb2WdZhEu6nHjR3mvf8Ko/CARqXWXZlwbZyY/41Kg9JXeaImVnpkejgl+aN552hyO+teRWLHUpLgTGlZ9KPLiNSKvdu1m9ffpvIchhGh6SmtbaJqOUtxyN6LjgDpUmtGlRThkUgsbuxiYdyqKancS5D78s5eMBsCBZhzFEJ/Hh3oWBy7QL8cMgzBOOLnWpE5YqTos5nPbm8bz0R8lguIm6pA/gSKeUbA+CsvAErVD+2fQHHQIDAQAB",
  "offline_enabled": true,
  "options_page": "options/index.html",
  "action": {
    "default_title": "__MSG_chrome_extension_name__",
    "default_icon": {
      "19": "img/icon_19.png",
      "38": "img/icon_38.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "eventPage.js"
  },
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "permissions": [
    "notifications",
    "system.display",
    "contextMenus",
    "unlimitedStorage",
    "storage",
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "*://*.wwevents.fun/*",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "js/*",
        "options/*",
        "css/*",
        "html/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}