Dark Mode View
Allows you to enable all websites to be dark mode to ease eye strain.
Что такое Dark Mode View?
Dark Mode View - это расширение Chrome, разработанное http://darkview.org, и его основная функция - "Allows you to enable all websites to be dark mode to ease eye strain. ".
Снимки экрана расширения
Скачать файл CRX расширения Dark Mode View
Скачайте файлы расширений Dark Mode View в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Dark Mode View other wise known as Dark view for short. Is a dark mode extension created to give users the ability to set their favorite websites to be dark mode. Dark View also has an invert option that turns white text into yellow to assist with reading in the dark.
Основная информация о расширении
Название | |
ID | ooliejnanmkmfamajdfidknhaklmiedd |
Официальный URL | https://chrome.google.com/webstore/detail/dark-mode-view/ooliejnanmkmfamajdfidknhaklmiedd |
Описание | Allows you to enable all websites to be dark mode to ease eye strain. |
Размер файла | 20.61 KB |
Количество установок | 5,870 |
Текущая Версия | 1.0 |
Последнее Обновление | 2021-03-30 |
Дата публикации | 2021-03-30 |
Рейтинг | 4.50/5 Всего 2 оценок |
Разработчик | http://darkview.org |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://darkview.org/ |
URL страницы помощи | https://darkview.org/ |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Greg Henderson", "homepage_url": "https:\/\/darkview.org", "name": "Dark Mode View", "description": "Allows you to enable all websites to be dark mode to ease eye strain. ", "icons": { "128": "icon-128.png" }, "version": "1.0", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "autotoggle.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon-128.png", "default_title": "Dark Mode Viewer", "default_popup": "popup.html" }, "permissions": [ "tabs", "storage" ] } |