Kaomoji Me Up

Kaomoji Me Up

Easily copy kaomojis (super cute Japanese emoticons) to your clipboard to use in your chats!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Kaomoji Me Up",
  "version": "1.0.0",
  "description": "Easily copy kaomojis (super cute Japanese emoticons) to your clipboard to use in your chats!",
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "icons/bear16.png",
    "32": "icons/bear32.png",
    "48": "icons/bear48.png",
    "128": "icons/bear128.png"
  },
  "background": {
    "scripts": [
      "background.js",
      "popup.js",
      "materialize/js/materialize.js",
      "jquery-3.3.1.min.js"
    ]
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_icon": "icons/bear16.png",
    "default_popup": "popup.html",
    "default_title": "A popup will come here."
  }
}