ChatWork™ Copilot

ChatWork™ Copilot

Chat Web, Work Copilot, Stock Assistant & Sidebar -FREE, GPT-4 & GPT4 Vision

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ChatWork™ Copilot",
  "version": "4.7.6",
  "description": "Chat Web, Work Copilot, Stock Assistant & Sidebar -FREE, GPT-4 & GPT4 Vision",
  "manifest_version": 3,
  "author": "Saas-AI",
  "action": {
    "default_title": "ChatWork™",
    "default_popup": "dist/popup/index.html",
    "defult_icon": "dist/assets/icon.png"
  },
  "side_panel": {
    "default_path": "popup-sidebar.html"
  },
  "options_ui": {
    "page": "dist/options/index.html",
    "open_in_tab": true
  },
  "icons": {
    "16": "dist/assets/icon.png",
    "32": "dist/assets/icon.png",
    "48": "dist/assets/icon.png",
    "128": "dist/assets/icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "dist/content/index.js"
      ],
      "css": [
        "dist/content/animate.css"
      ],
      "matches": [
        "*://*/*"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "dist/background/index.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "optional_host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "commands": {
    "inject-script": {
      "suggested_key": {
        "default": "Alt+Shift+Y",
        "windows": "Alt+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Inject a script on the page",
      "global": true
    },
    "open-popup": {
      "suggested_key": {
        "default": "Alt+Shift+U",
        "windows": "Alt+Shift+U",
        "mac": "Command+Shift+U"
      },
      "description": "Run \"foo\" on the current page.",
      "global": true
    },
    "_execute_action": {
      "suggested_key": {
        "windows": "Alt+Shift+E",
        "mac": "Command+Shift+E",
        "chromeos": "Alt+Shift+E",
        "linux": "Alt+Shift+E"
      }
    }
  },
  "permissions": [
    "clipboardRead",
    "cookies",
    "contextMenus",
    "activeTab",
    "storage",
    "sidePanel"
  ]
}