Emoji Keyboard

Emoji Keyboard

The largest and best emoji icon library. Copy paste!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "description": "The largest and best emoji icon library. Copy paste!",
  "default_locale": "en",
  "version": "1.4",
  "permissions": [
    "<all_urls>",
    "storage"
  ],
  "icons": {
    "128": "grinning.png"
  },
  "background": {
    "scripts": [
      "jquery/jquery.js",
      "default_library.js",
      "sizzle/sizzle.js",
      "background_scripts/bg1.js",
      "background_scripts/bg2.js",
      "background_scripts/bg3.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery/jquery.js",
        "content_scripts/index.js"
      ]
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Alt+Shift+E",
        "mac": "Ctrl+Shift+E",
        "chromeos": "Alt+Shift+E",
        "linux": "Alt+Shift+E"
      }
    }
  },
  "web_accessible_resources": [
    "*/**/**"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
  "browser_action": {
    "default_icon": "grinning.png",
    "default_popup": "index.html"
  }
}