MyChats

MyChats

MyChats

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MyChats",
  "description": "MyChats",
  "version": "1.6",
  "manifest_version": 3,
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon.png",
      "48": "images/icon.png",
      "128": "images/icon.png"
    }
  },
  "permissions": [
    "tabs",
    "storage",
    "cookies",
    "background"
  ],
  "host_permissions": [
    "https://chatshouse.com/",
    "https://mychats.pro/"
  ],
  "background": {
    "service_worker": "dist/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chatshouse.com/*"
      ],
      "js": [
        "dist/js/content_script.js"
      ]
    }
  ]
}