Sidechat: Productivity & Free Chat Messaging

Sidechat: Productivity & Free Chat Messaging

Puts a free chat messaging popup on any site for real-time productivity & collaboration with anyone browsing the same website as you

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Sidechat: Productivity & Free Chat Messaging",
  "description": "Puts a free chat messaging popup on any site for real-time productivity & collaboration with anyone browsing the same website as you",
  "version": "1.0.1",
  "background": {
    "service_worker": "/js/background.js"
  },
  "action": {
    "default_title": "Sidechat"
  },
  "icons": {
    "16": "/img/icon.png",
    "48": "/img/icon.png",
    "128": "/img/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/content.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "cookies"
  ],
  "host_permissions": [
    "https://webchat1x.herokuapp.com/"
  ]
}