Custom Highlight

A chrome extension for customizing highlight color.

O que é Custom Highlight?

Custom Highlight é uma extensão do Chrome desenvolvida por Andreto, e sua principal característica é "A chrome extension for customizing highlight color.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Custom Highlight

Baixe arquivos de extensão Custom Highlight no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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/                    

Informações Básicas da Extensão

Nome Custom Highlight Custom Highlight
ID bmhaflbnleckffaacepbbbonfookcedm
URL Oficial https://chromewebstore.google.com/detail/custom-highlight/bmhaflbnleckffaacepbbbonfookcedm
Descrição A chrome extension for customizing highlight color.
Tamanho do Arquivo 56.93 KB
Contagem de Instalações 7,000
Versão Atual 1.5.0
Última Atualização 2021-05-24
Data de Publicação 2020-02-19
Classificação 3.85/5 Total de 20 Avaliações
Desenvolvedor Andreto
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://andreto.github.io/Custom-Highlight
URL da Página de Ajuda https://github.com/Andreto/Custom-Highlight
Idiomas Suportados 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"
    }
}