Emoji Swap

Emoji Swap

Swap between several emoji webfonts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Emoji Swap",
  "description": "Swap between several emoji webfonts",
  "version": "0.0.4",
  "icons": {
    "16": "logo/logo-16.png",
    "48": "logo/logo-48.png",
    "128": "logo/logo-128.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "emojiSwap.js"
      ],
      "css": [
        "emojiSwap.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "action": {
    "default_icon": {
      "16": "off/icon-16.png",
      "48": "off/icon-48.png",
      "128": "off/icon-128.png"
    },
    "default_title": "Click me to manage emojis for the current tab"
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "o_Options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.woff2",
        "*.ttf",
        "o_Help.html",
        "o_Attribution.html",
        "o_Options.html",
        "options.js",
        "logo/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}