Simple Night Mode
An addon to invert the color of any webpage/website, making contents of any website less stressful on your eyes.
Что такое Simple Night Mode?
Simple Night Mode - это расширение Chrome, разработанное Aniket, и его основная функция - "An addon to invert the color of any webpage/website, making contents of any website less stressful on your eyes.".
Снимки экрана расширения
Скачать файл CRX расширения Simple Night Mode
Скачайте файлы расширений Simple Night Mode в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Invert the color of any webpage/website, making contents of any website readable and less stressful on your eyes if you are surfing internet in dark lit room. Click the Simple Night Mode Button to start Night Mode.
Основная информация о расширении
Название | Simple Night Mode |
ID | daogheeomfnjjbabmnmgpbhmamegpbaj |
Официальный URL | https://chromewebstore.google.com/detail/simple-night-mode/daogheeomfnjjbabmnmgpbhmamegpbaj |
Описание | An addon to invert the color of any webpage/website, making contents of any website less stressful on your eyes. |
Размер файла | 7.84 KB |
Количество установок | 1,967 |
Текущая Версия | 1.0.2 |
Последнее Обновление | 2016-12-06 |
Дата публикации | 2016-12-06 |
Рейтинг | 4.15/5 Всего 40 оценок |
Разработчик | Aniket |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Night Mode", "version": "1.0.2", "description": "An addon to invert the color of any webpage\/website, making contents of any website less stressful on your eyes.", "background": { "scripts": [ "libs\/control.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "libs\/system.js" ], "run_at": "document_start" } ], "icons": { "16": "images\/icon24.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": { "19": "images\/icon24.png", "38": "images\/icon48.png" }, "default_title": "Simple Night Mode" }, "permissions": [ "tabs", "*:\/\/*\/*" ], "manifest_version": 2, "web_accessible_resources": [ "themes\/simple.css", "libs\/system.js" ] } |