Free Medium
Hide all premium content on medium
什么是Free Medium?
Free Medium是由Josh Batley开发的Chrome扩展程序,该扩展的主要功能是“Hide all premium content on medium”。
扩展截图
下载Free Medium扩展crx文件
下载Free Medium扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Toggle on and off Medium's premium content, from any main page on Medium. Only works on medium.com, no support for 3rd party blog.
扩展基本信息
名称 | |
ID | chnbggofbpmdlhmckdjebefnbbpiflcj |
官方URL | https://chrome.google.com/webstore/detail/free-medium/chnbggofbpmdlhmckdjebefnbbpiflcj |
简介 | Hide all premium content on medium |
文件大小 | 4.91 MB |
安装次数 | 76 |
当前版本 | 1.1 |
更新时间 | 2019-03-08 |
上架时间 | 2019-03-08 |
评分 | 3.00/5 共2次评分 |
开发者 | Josh Batley |
付费类型 | free |
扩展官网 | https://github.com/jbatley/hidePremiumContent |
帮助页面URL | https://github.com/jbatley/hidePremiumContent/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Free Medium", "version": "1.1", "description": "Hide all premium content on medium", "manifest_version": 2, "background": { "scripts": [ "lib\/main.js" ], "persistent": true }, "browser_action": { "default_icon": "icons\/icon_grey_16.png" }, "permissions": [ "contextMenus", "tabs", "webRequest", "*:\/\/*.medium.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.medium.com\/*" ], "js": [ "lib\/content.js" ] } ], "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" } } |