知乎精选

知乎精选

知乎问答精选

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "知乎精选",
  "version": "1.0",
  "manifest_version": 2,
  "minimum_chrome_version": "17.0.0",
  "description": "知乎问答精选",
  "content_scripts": [
    {
      "matches": [
        "https://*.zhihu.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "zhihu.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs",
    "*://*/*",
    "webRequestBlocking",
    "webRequest"
  ],
  "page_action": {
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "init.js"
    ]
  },
  "icons": {
    "16": "icon-16.png",
    "128": "icon-128.png"
  }
}