Medium Dark
Gives a dark theme to medium web site so is easier to read.
Что такое Medium Dark?
Medium Dark - это расширение Chrome, разработанное http://danielzamorano.pro, и его основная функция - "Gives a dark theme to medium web site so is easier to read.".
Снимки экрана расширения
Скачать файл CRX расширения Medium Dark
Скачайте файлы расширений Medium Dark в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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)
Основная информация о расширении
Название | |
ID | ogghkkonjkglempfkojfbmjgnahllbao |
Официальный URL | https://chrome.google.com/webstore/detail/medium-dark/ogghkkonjkglempfkojfbmjgnahllbao |
Описание | Gives a dark theme to medium web site so is easier to read. |
Размер файла | 14.21 KB |
Количество установок | 75 |
Текущая Версия | 0.1.0 |
Последнее Обновление | 2019-11-04 |
Дата публикации | 2019-11-04 |
Рейтинг | 4.00/5 Всего 1 оценок |
Разработчик | http://danielzamorano.pro |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://danielzamorano.pro |
URL страницы помощи | https://danielzamorano.pro |
Поддерживаемые языки | 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 } |