Boss Hub | ChatBar

Boss Hub | ChatBar

FREE, Chat Web, Work Copilot, Stock Assistant & Sidebar. 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": "Boss Hub | ChatBar",
  "description": "FREE, Chat Web, Work Copilot, Stock Assistant & Sidebar. GPT-4 & GPT4 Vision",
  "version": "4.7.3",
  "manifest_version": 3,
  "permissions": [
    "contextMenus",
    "scripting",
    "activeTab",
    "storage",
    "sidePanel"
  ],
  "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"
      }
    }
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*",
        "<all_urls>",
        "file:///*",
        "http://localhost:3000/*",
        "http://localhost:8080/*",
        "http://localhost:8501/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "styles.css"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_title": "ChatWork™ GPT4-128K Sidebar -FREE",
    "default_popup": "popup.html"
  },
  "side_panel": {
    "default_path": "popup-sidebar.html"
  },
  "icons": {
    "16": "chat16.png",
    "32": "chat32.png",
    "48": "chat48.png",
    "128": "chat128.png"
  }
}