Custom Highlight

A chrome extension for customizing highlight color.

Что такое Custom Highlight?

Custom Highlight - это расширение Chrome, разработанное Andreto, и его основная функция - "A chrome extension for customizing highlight color.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Custom Highlight

Скачайте файлы расширений Custom Highlight в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Change Highlight background and text-color. It's easy to set the color with the built-in color picker or by copy and pasting color hex codes.

Works on pretty much all websites, including Google Docs.

Compatible with Dark Reader.
--
This extension does not read or handle any user data.
https://andreto.github.io/Custom-Highlight/                    

Основная информация о расширении

Название Custom Highlight Custom Highlight
ID bmhaflbnleckffaacepbbbonfookcedm
Официальный URL https://chromewebstore.google.com/detail/custom-highlight/bmhaflbnleckffaacepbbbonfookcedm
Описание A chrome extension for customizing highlight color.
Размер файла 56.93 KB
Количество установок 7,000
Текущая Версия 1.5.0
Последнее Обновление 2021-05-24
Дата публикации 2020-02-19
Рейтинг 3.85/5 Всего 20 оценок
Разработчик Andreto
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://andreto.github.io/Custom-Highlight
URL страницы помощи https://github.com/Andreto/Custom-Highlight
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Custom Highlight",
    "description": "A chrome extension for customizing highlight color.",
    "version": "1.5.0",
    "author": "Andreto",
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}