Rexmoji

Rexmoji

A simple extension for making your video calls less boring by adding capability of sending emojis to everyone.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDesc__",
  "version": "1.3.1",
  "author": "010 Pixel",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://meet.google.com/**-**-**",
    "https://*.zoom.us/*"
  ],
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon38.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_appBrowserActionDefaultTitle__"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "https://meet.google.com/**-**-**",
        "https://*.zoom.us/*"
      ],
      "js": [
        "js/_libs.js",
        "js/_myapp.js"
      ],
      "css": [
        "css/styles.css",
        "css/emojis.css"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "24": "images/icon19.png",
    "32": "images/icon38.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/icons/*",
        "images/emoji/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}