知乎眼镜

知乎眼镜

带着眼镜看知乎——知乎内容过滤

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "知乎眼镜",
  "version": "0.4",
  "description": "带着眼镜看知乎——知乎内容过滤",
  "background": {
    "scripts": [
      "lib/background/background.js"
    ]
  },
  "icons": {
    "16": "icons/16.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.zhihu.com/*"
      ],
      "js": [
        "lib/content-scripts/mutation-summary.js",
        "lib/content-scripts/filter.js"
      ]
    }
  ],
  "page_action": {
    "default_icon": {
      "16": "icons/16.png",
      "64": "icons/64.png"
    },
    "default_title": "知乎眼镜",
    "default_popup": "lib/popup.html"
  },
  "permissions": [
    "declarativeContent",
    "storage",
    "contextMenus"
  ]
}