Web to Chat

Web to Chat

Web to Chat is an extension that allows you to interact with the URL you are visiting.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Web to Chat",
  "version": "1.0.1",
  "description": "Web to Chat is an extension that allows you to interact with the URL you are visiting.",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "/dist/bundle.js"
      ]
    }
  ],
  "background": {
    "service_worker": "./src/background.js"
  },
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "./src/config-popup/popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/icon48.png",
        "assets/images/logo.png",
        "/src/assets/images/typing.gif"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}