Medium Dark
Gives a dark theme to medium web site so is easier to read.
What is Medium Dark?
Medium Dark is a Chrome extension developed by http://danielzamorano.pro, and its main feature is "Gives a dark theme to medium web site so is easier to read.".
Extension Screenshots
Download Medium Dark Extension CRX File
Download Medium Dark 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
Enjoy medium articles in dark mode. We will keep updating and improving this plugin to get better styles, debug any issue and add features. - Right now it's just working for the article page, home page is still in progress. - It has permissions for all sites to be able to work also with domains inside medium. (we filter internally so is not affecting other pages) - Some async content is having problems to get the styles (we are working on it)
Extension Basic Information
Name | |
ID | ogghkkonjkglempfkojfbmjgnahllbao |
Official URL | https://chrome.google.com/webstore/detail/medium-dark/ogghkkonjkglempfkojfbmjgnahllbao |
Description | Gives a dark theme to medium web site so is easier to read. |
File Size | 14.21 KB |
Installation Count | 75 |
Current Version | 0.1.0 |
Last Updated | 2019-11-04 |
Publish Date | 2019-11-04 |
Rating | 4.00/5 Total 1 Ratings |
Developer | http://danielzamorano.pro |
[email protected] | |
Payment Type | free |
Extension Website | https://danielzamorano.pro |
Help Page URL | https://danielzamorano.pro |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Medium Dark", "version": "0.1.0", "description": "Gives a dark theme to medium web site so is easier to read.", "permissions": [ "activeTab" ], "options_page": "options.html", "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "medium-dark.js" ] } ], "icons": { "16": "images\/medium-dark-16.png", "32": "images\/medium-dark-32.png", "48": "images\/medium-dark-48.png", "128": "images\/medium-dark-128.png" }, "manifest_version": 2 } |