Custom Highlight

A chrome extension for customizing highlight color.

Qu'est-ce que Custom Highlight ?

Custom Highlight est une extension Chrome développée par Andreto, et sa fonction principale est "A chrome extension for customizing highlight color.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Custom Highlight

Téléchargez les fichiers d'extension Custom Highlight au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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/                    

Informations de Base sur l'Extension

Nom Custom Highlight Custom Highlight
ID bmhaflbnleckffaacepbbbonfookcedm
URL Officiel https://chromewebstore.google.com/detail/custom-highlight/bmhaflbnleckffaacepbbbonfookcedm
Description A chrome extension for customizing highlight color.
Taille du Fichier 56.93 KB
Nombre d'Installations 7,000
Version Actuelle 1.5.0
Dernière Mise à Jour 2021-05-24
Date de Publication 2020-02-19
Évaluation 3.85/5 Total 20 Évaluations
Développeur Andreto
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://andreto.github.io/Custom-Highlight
URL de la Page d'Aide https://github.com/Andreto/Custom-Highlight
Langues Prises en Charge 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"
    }
}