Custom Highlight

A chrome extension for customizing highlight color.

Hvad er Custom Highlight?

Custom Highlight er en Chrome-udvidelse udviklet af Andreto, og dens hovedfunktion er "A chrome extension for customizing highlight color.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Custom Highlight-udvidelses-CRX-fil

Download Custom Highlight-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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/                    

Grundlæggende oplysninger om udvidelsen

Navn Custom Highlight Custom Highlight
ID bmhaflbnleckffaacepbbbonfookcedm
Officiel URL https://chromewebstore.google.com/detail/custom-highlight/bmhaflbnleckffaacepbbbonfookcedm
Beskrivelse A chrome extension for customizing highlight color.
Filstørrelse 56.93 KB
Antal Installationer 7,000
Nuværende Version 1.5.0
Senest Opdateret 2021-05-24
Udgivelsesdato 2020-02-19
Bedømmelse 3.85/5 Samlet 20 Bedømmelser
Udvikler Andreto
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://andreto.github.io/Custom-Highlight
Hjælpeside-URL https://github.com/Andreto/Custom-Highlight
Understøttede Sprog 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"
    }
}