Custom Highlight

A chrome extension for customizing highlight color.

Was ist Custom Highlight?

Custom Highlight ist eine Chrome-Erweiterung, die von Andreto entwickelt wurde, und ihr Hauptmerkmal ist "A chrome extension for customizing highlight color.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Custom Highlight-Erweiterungs-CRX-Datei herunterladen

Laden Sie Custom Highlight-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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/                    

Grundlegende Informationen zur Erweiterung

Name Custom Highlight Custom Highlight
ID bmhaflbnleckffaacepbbbonfookcedm
Offizielle URL https://chromewebstore.google.com/detail/custom-highlight/bmhaflbnleckffaacepbbbonfookcedm
Beschreibung A chrome extension for customizing highlight color.
Dateigröße 56.93 KB
Installationsanzahl 7,000
Aktuelle Version 1.5.0
Letztes Update 2021-05-24
Veröffentlichungsdatum 2020-02-19
Bewertung 3.85/5 Insgesamt 20 Bewertungen
Entwickler Andreto
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://andreto.github.io/Custom-Highlight
Hilfeseite URL https://github.com/Andreto/Custom-Highlight
Unterstützte Sprachen 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"
    }
}