极简微6

极简微6

微博急简V6不能用了,于是自己写了一个。清理掉了侧栏,弱化了次要内容,增强了阅读体验

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "极简微6",
  "description": "微博急简V6不能用了,于是自己写了一个。清理掉了侧栏,弱化了次要内容,增强了阅读体验",
  "version": "1.7.4",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "tabs"
  ],
  "browser_action": {
    "default_icon": "weibodigital64.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://weibo.com/*",
        "http://www.weibo.com/*"
      ],
      "css": [
        "clean.css"
      ],
      "js": [
        "jquery-1.3b1.js",
        "clean.js"
      ]
    }
  ]
}