极客时间页面优化

极客时间页面优化

页面左侧目录高度范围调大

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "极客时间页面优化",
  "manifest_version": 2,
  "version": "2.1",
  "description": "页面左侧目录高度范围调大",
  "icons": {
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": "./images/icon128.png",
    "default_title": "interest"
  },
  "content_scripts": [
    {
      "matches": [
        "https://time.geekbang.org/column/*"
      ],
      "js": [
        "main.js"
      ]
    }
  ]
}