微信公众号全屏写作

微信公众号全屏写作

让微信公众号编辑器支持全屏写作。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "微信公众号全屏写作",
  "version": "1.5.0",
  "description": "让微信公众号编辑器支持全屏写作。",
  "icons": {
    "128": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "微信公众号全屏写作"
  },
  "content_scripts": [
    {
      "matches": [
        "*://mp.weixin.qq.com/*"
      ],
      "css": [
        "editor.css"
      ]
    }
  ],
  "permissions": [
    "*://mp.weixin.qq.com/*"
  ]
}