Change content color
Double click any region in a webpage where you want to make its color warm.
Что такое Change content color?
Change content color - это расширение Chrome, разработанное Jeff T., и его основная функция - "Double click any region in a webpage where you want to make its color warm.".
Снимки экрана расширения
Скачать файл CRX расширения Change content color
Скачайте файлы расширений Change content color в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
For making eyes more comfortable during web surfing, with the extension you can change the background color from white to a warm color for most webpages. Just double click any region where you want to change color in a webpage. * Some webpages whose content color can not be changed because they may be defended with high security and not allow general script to change them. Change log: v1.1 - Urls support ftp now. v1.2 - More areas can be changed.
Основная информация о расширении
Название | Change content color |
ID | llidcihmjceniojdhhdnejnbbjdepphi |
Официальный URL | https://chromewebstore.google.com/detail/change-content-color/llidcihmjceniojdhhdnejnbbjdepphi |
Описание | Double click any region in a webpage where you want to make its color warm. |
Размер файла | 92.63 KB |
Количество установок | 178 |
Текущая Версия | 1.2 |
Последнее Обновление | 2017-01-10 |
Дата публикации | 2017-01-10 |
Рейтинг | 3.67/5 Всего 6 оценок |
Разработчик | Jeff T. |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Change content color", "description": "Double click any region in a webpage where you want to make its color warm.", "version": "1.2", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*", "ftp:\/\/*\/*" ], "js": [ "jquery-1.11.3.js", "bg_change.js", "background.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background2.js" ], "persistent": false }, "page_action": { "default_title": "Change content color", "default_icon": "paint-brush-128.png" }, "manifest_version": 2, "icons": { "64": "paint-brush-128.png" } } |