Hide Medium
Hides Medium.com articles from Hacker News and Designer News.
What is Hide Medium?
Hide Medium is a Chrome extension developed by ddggccaa, and its main feature is "Hides Medium.com articles from Hacker News and Designer News.".
Extension Screenshots
Download Hide Medium Extension CRX File
Download Hide Medium extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Hide Medium hides articles from Medium.com on Hacker News and Designer News. When on, it reports how many items, if any, were hidden on pageload. You can toggle it on and off directly from your browser. Version History: 1.1 - Updated to work with DN's new domain 1.0 - A new extension is born!
Extension Basic Information
Name | Hide Medium |
ID | fjfdkhihpiabibpdkddchbkmmbabhpaj |
Official URL | https://chromewebstore.google.com/detail/hide-medium/fjfdkhihpiabibpdkddchbkmmbabhpaj |
Description | Hides Medium.com articles from Hacker News and Designer News. |
File Size | 70.67 KB |
Installation Count | 25 |
Current Version | 1.1 |
Last Updated | 2015-09-04 |
Publish Date | 2015-09-04 |
Rating | 4.00/5 Total 1 Ratings |
Developer | ddggccaa |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hide Medium", "version": "1.1", "description": "Hides Medium.com articles from Hacker News and Designer News.", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "images\/on.png", "default_title:": "Filter Medium" }, "permissions": [ "storage" ], "author": "Dan Cortes", "content_scripts": [ { "matches": [ "*:\/\/www.designernews.co\/*", "*:\/\/news.ycombinator.com\/*" ], "css": [ "style.css" ], "js": [ "jquery.min.js", "contentscript.js" ] } ] } |