Talk Web - Talk to any website

Talk Web - Talk to any website

Talk Web let's you talk to and ask questions from any website. Quickly get important facts, summarize news, long documents etc

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Talk Web - Talk to any website",
  "description": "Talk Web let's you talk to and ask questions from  any website. Quickly get important facts, summarize news, long documents etc",
  "version": "1.3.0",
  "action": {
    "default_title": "Talk Web",
    "default_icon": {
      "16": "48.png",
      "48": "48.png",
      "128": "128.png"
    }
  },
  "icons": {
    "16": "48.png",
    "48": "48.png",
    "128": "128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "iframe/iframe.html"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}