Custom Highlight

A chrome extension for customizing highlight color.

Co je Custom Highlight?

Custom Highlight je rozšíření Chrome vyvinuté Andreto, a jeho hlavní funkcí je „A chrome extension for customizing highlight color.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Custom Highlight

Stáhněte si soubory rozšíření Custom Highlight ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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/                    

Základní Informace o Rozšíření

Název Custom Highlight Custom Highlight
ID bmhaflbnleckffaacepbbbonfookcedm
Oficiální URL https://chromewebstore.google.com/detail/custom-highlight/bmhaflbnleckffaacepbbbonfookcedm
Popis A chrome extension for customizing highlight color.
Velikost souboru 56.93 KB
Počet instalací 7,000
Aktuální Verze 1.5.0
Poslední Aktualizace 2021-05-24
Datum Vydání 2020-02-19
Hodnocení 3.85/5 Celkem 20 Hodnocení
Vývojář Andreto
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://andreto.github.io/Custom-Highlight
URL Stránky Nápovědy https://github.com/Andreto/Custom-Highlight
Podporované Jazyky 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"
    }
}