Custom Highlight

A chrome extension for customizing highlight color.

Wat is Custom Highlight?

Custom Highlight is een Chrome-extensie ontwikkeld door Andreto, en de belangrijkste functie is "A chrome extension for customizing highlight color.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Custom Highlight

Download Custom Highlight-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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/                    

Basisinformatie over de Extensie

Naam Custom Highlight Custom Highlight
ID bmhaflbnleckffaacepbbbonfookcedm
Officiële URL https://chromewebstore.google.com/detail/custom-highlight/bmhaflbnleckffaacepbbbonfookcedm
Beschrijving A chrome extension for customizing highlight color.
Bestandsgrootte 56.93 KB
Aantal Installaties 7,000
Huidige Versie 1.5.0
Laatst Bijgewerkt 2021-05-24
Publicatiedatum 2020-02-19
Beoordeling 3.85/5 Totaal 20 Beoordelingen
Ontwikkelaar Andreto
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://andreto.github.io/Custom-Highlight
Help Pagina-URL https://github.com/Andreto/Custom-Highlight
Ondersteunde Talen 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"
    }
}