Custom Highlight

A chrome extension for customizing highlight color.

Cos'è Custom Highlight?

Custom Highlight è un'estensione di Chrome sviluppata da Andreto, e la sua funzione principale è "A chrome extension for customizing highlight color.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Custom Highlight

Scarica i file di estensione Custom Highlight in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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/                    

Informazioni di Base sull'Estensione

Nome Custom Highlight Custom Highlight
ID bmhaflbnleckffaacepbbbonfookcedm
URL Ufficiale https://chromewebstore.google.com/detail/custom-highlight/bmhaflbnleckffaacepbbbonfookcedm
Descrizione A chrome extension for customizing highlight color.
Dimensione del File 56.93 KB
Conteggio Installazioni 7,000
Versione Corrente 1.5.0
Ultimo Aggiornamento 2021-05-24
Data di Pubblicazione 2020-02-19
Valutazione 3.85/5 Totale 20 Valutazioni
Sviluppatore Andreto
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://andreto.github.io/Custom-Highlight
URL della Pagina di Aiuto https://github.com/Andreto/Custom-Highlight
Lingue Supportate 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"
    }
}