Tu Dong Chat

Tu Dong Chat

Tự động chat extension là công cụ hỗ trợ trong việc tư vấn khách hàng bằng trí tuệ nhân tạo ChatGPT chỉ cần bôi đen đoạn văn bản…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tu Dong Chat",
  "version": "2.2.1",
  "description": "",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "host_permissions": [
    "https://tudongchat.com/*",
    "https://*.tudongchat.com/*"
  ],
  "permissions": [
    "storage"
  ],
  "options_page": "option.html",
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "css": [
        "assets/content.css"
      ],
      "js": [
        "tasks/content.js"
      ]
    },
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "tasks/upload-helper.js"
      ],
      "world": "MAIN"
    },
    {
      "matches": [
        "https://app.tudongchat.com/auth/extension"
      ],
      "js": [
        "tasks/auth-service.js"
      ]
    },
    {
      "matches": [
        "https://*.tudongchat.com/*",
        "https://tudongchat.com/*"
      ],
      "js": [
        "tasks/tudongchat.js"
      ],
      "world": "MAIN"
    }
  ],
  "background": {
    "service_worker": "entries/background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}