Free Medium
Hide all premium content on medium
Wat is Free Medium?
Free Medium is een Chrome-extensie ontwikkeld door Josh Batley, en de belangrijkste functie is "Hide all premium content on medium".
Extensie Screenshots
Download het CRX-bestand van de extensie Free Medium
Download Free Medium-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | chnbggofbpmdlhmckdjebefnbbpiflcj |
Officiële URL | https://chrome.google.com/webstore/detail/free-medium/chnbggofbpmdlhmckdjebefnbbpiflcj |
Beschrijving | Hide all premium content on medium |
Bestandsgrootte | 4.91 MB |
Aantal Installaties | 76 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2019-03-08 |
Publicatiedatum | 2019-03-08 |
Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Josh Batley |
Betalingswijze | free |
Extensiewebsite | https://github.com/jbatley/hidePremiumContent |
Help Pagina-URL | https://github.com/jbatley/hidePremiumContent/issues |
Ondersteunde Talen | 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" } } |