AG智能助手-GPT聊天,绘图,Vision,联网

AG智能助手-GPT聊天,绘图,Vision,联网

由GPT-4 Turbo等模型驱动的私人AI工作助手!支持GPT联网、PDF分析、GPT-4 Vision、SD绘图、dall·e3绘图等多种功能为一体,是您最强大的AI工作助手!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_agext_name__",
  "description": "__MSG_agext_desc__",
  "options_page": "aioptions.html",
  "default_locale": "zh_CN",
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": "img/icon-38.png"
  },
  "icons": {
    "128": "img/icon-256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ],
      "all_frames": false
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "droppanel.css"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "declarativeNetRequest",
    "storage",
    "tabs",
    "scripting",
    "downloads",
    "webRequest",
    "unlimitedStorage"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "commands": {
    "CMD_OPEN_AG": {
      "suggested_key": "Ctrl+Q",
      "description": "打开AG窗口"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "img/*.png",
        "img/*.jpg",
        "aiscripts/*",
        "*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "version": "4.2.1",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}