Hide Medium
Hides Medium.com articles from Hacker News and Designer News.
Cos'è Hide Medium?
Hide Medium è un'estensione di Chrome sviluppata da ddggccaa, e la sua funzione principale è "Hides Medium.com articles from Hacker News and Designer News.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Hide Medium
Scarica i file di estensione Hide Medium in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | Hide Medium |
ID | fjfdkhihpiabibpdkddchbkmmbabhpaj |
URL Ufficiale | https://chromewebstore.google.com/detail/hide-medium/fjfdkhihpiabibpdkddchbkmmbabhpaj |
Descrizione | Hides Medium.com articles from Hacker News and Designer News. |
Dimensione del File | 70.67 KB |
Conteggio Installazioni | 25 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2015-09-04 |
Data di Pubblicazione | 2015-09-04 |
Valutazione | 4.00/5 Totale 1 Valutazioni |
Sviluppatore | ddggccaa |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |