微博相互关注

微博相互关注

为新版新浪微博添加相互关注功能

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "微博相互关注",
  "description": "为新版新浪微博添加相互关注功能",
  "version": "1.1.1",
  "manifest_version": 2,
  "update_url": "http://clients2.google.com/service/update2/crx",
  "icons": {
    "128": "images/icon.png"
  },
  "browser_action": {
    "all_frames": true,
    "default_icon": "images/icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.weibo.com/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/store.js",
        "js/index.js"
      ]
    }
  ],
  "permissions": [
    "http://*.weibo.com/*"
  ]
}