Custom Highlight

A chrome extension for customizing highlight color.

Co to jest Custom Highlight?

Custom Highlight to rozszerzenie Chrome opracowane przez Andreto, a jego główną funkcją jest „A chrome extension for customizing highlight color.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Custom Highlight

Pobierz pliki rozszerzeń Custom Highlight w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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/                    

Podstawowe informacje o rozszerzeniu

Nazwa Custom Highlight Custom Highlight
ID bmhaflbnleckffaacepbbbonfookcedm
Oficjalny URL https://chromewebstore.google.com/detail/custom-highlight/bmhaflbnleckffaacepbbbonfookcedm
Opis A chrome extension for customizing highlight color.
Rozmiar pliku 56.93 KB
Liczba instalacji 7,000
Aktualna Wersja 1.5.0
Ostatnia Aktualizacja 2021-05-24
Data Publikacji 2020-02-19
Ocena 3.85/5 Łącznie 20 Oceny
Deweloper Andreto
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://andreto.github.io/Custom-Highlight
Adres URL Strony Pomocy https://github.com/Andreto/Custom-Highlight
Obsługiwane Języki 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"
    }
}