Emoji Keyboard Suite

Emoji Keyboard Suite

Emoji Keyboard Suite is a free extension that lets you input emojis on the web browser of your computer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": "icon48.png",
    "default_popup": "emojikeyboard.html"
  },
  "content_scripts": [
    {
      "js": [
        "insert-emoji.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "description": "Emoji Keyboard Suite is a free extension that lets you input emojis on the web browser of your computer",
  "icons": {
    "16": "icon.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 3,
  "name": "Emoji Keyboard Suite",
  "short_name": "Emoji Keyboard Suite",
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "storage"
  ],
  "version": "1.1.0",
  "web_accessible_resources": [
    {
      "resources": [
        "jquery-3.1.0.min.js",
        "data_emoji.js",
        "images/sprites/emojione/emojione-0-2x.png",
        "images/sprites/emojione/emojione-1-2x.png",
        "images/sprites/emojione/emojione-2-2x.png",
        "images/sprites/emojione/emojione-3-2x.png",
        "images/sprites/emojione/emojione-4-2x.png",
        "images/sprites/emojione/emojione-5-2x.png",
        "images/sprites/emojione/emojione-6-2x.png",
        "images/sprites/emojione/emojione-7-2x.png",
        "images/sprites/emojione/emojione-8-2x.png",
        "sweetalert2.min.css",
        "sweetalert2.min.js",
        "emojikeyboard.png",
        "ga.js"
      ],
      "matches": [],
      "extension_ids": []
    }
  ]
}