一键微博

一键微博

使用Chrome右键便捷发送微博的Chrome扩展

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "一键微博",
  "version": "3.0.0",
  "description": "使用Chrome右键便捷发送微博的Chrome扩展",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "wb24.png",
    "default_popup": "pop.html"
  },
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://wbonfly.applinzi.com/chrome.html*"
      ],
      "js": [
        "js/jquery.js",
        "js/injected.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "icons": {
    "16": "wb16.png",
    "24": "wb24.png",
    "48": "wb48.png"
  }
}