写作猫浏览器插件

写作猫浏览器插件

秘塔写作猫是一款由AI赋能的写作工具,帮您推敲用法、斟酌文法、改写文风,还可以续写文章。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "写作猫浏览器插件",
  "short_name": "写作猫",
  "description": "秘塔写作猫是一款由AI赋能的写作工具,帮您推敲用法、斟酌文法、改写文风,还可以续写文章。",
  "version": "2.0.0",
  "homepage_url": "https://xiezuocat.com",
  "icons": {
    "128": "img/icon_128.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "秘塔写作猫,知错能改"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/lib/jquery.js",
        "/static/js/chunk.js",
        "/static/js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "permissions": [
    "<all_urls>",
    "tabs",
    "storage",
    "cookies",
    "clipboardWrite"
  ],
  "content_security_policy": "script-src 'self' 'sha256-5As4+3YpY62+l38PsxCEkjB1R4YtyktBtRScTJ3fyLU='; object-src 'self'",
  "externally_connectable": {
    "matches": [
      "*://xiezuocat.com/*"
    ]
  }
}