Custom Highlight

A chrome extension for customizing highlight color.

Vad är Custom Highlight?

Custom Highlight är en Chrome-tillägg utvecklad av Andreto, och dess huvudfunktion är "A chrome extension for customizing highlight color.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Custom Highlight-förlängningens CRX-fil

Ladda ner Custom Highlight-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Custom Highlight Custom Highlight
ID bmhaflbnleckffaacepbbbonfookcedm
Officiell webbadress https://chromewebstore.google.com/detail/custom-highlight/bmhaflbnleckffaacepbbbonfookcedm
Beskrivning A chrome extension for customizing highlight color.
Filstorlek 56.93 KB
Antal Installationer 7,000
Aktuell Version 1.5.0
Senast Uppdaterad 2021-05-24
Publiceringsdatum 2020-02-19
Betyg 3.85/5 Totalt 20 Betyg
Utvecklare Andreto
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://andreto.github.io/Custom-Highlight
Hjälpsida URL https://github.com/Andreto/Custom-Highlight
Stödda Språk 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"
    }
}