Highlight Me

This simple tool allows you to highlight selected text on web pages. - You can choose among a variety of background colors. - You…

O que é Highlight Me?

Highlight Me é uma extensão do Chrome desenvolvida por Faycal Bessayah, e sua principal característica é "This simple tool allows you to highlight selected text on web pages. - You can choose among a variety of background colors. - You…".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Highlight Me

Baixe arquivos de extensão Highlight Me 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

                        This simple tool allows you to highlight selected text on web pages.
- You can choose among a variety of background colors.
- You can point out important information in long web pages by highlighting text with your mouse.

* You need to refresh opened pages after installation.                    

Informações Básicas da Extensão

Nome Highlight Me Highlight Me
ID ddpcccogmbnjklniagfkclpbohhaoidf
URL Oficial https://chromewebstore.google.com/detail/highlight-me/ddpcccogmbnjklniagfkclpbohhaoidf
Descrição This simple tool allows you to highlight selected text on web pages. - You can choose among a variety of background colors. - You…
Tamanho do Arquivo 265 KB
Contagem de Instalações 27
Versão Atual 1.0
Última Atualização 2021-03-14
Data de Publicação 2021-01-09
Desenvolvedor Faycal Bessayah
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Highlight Me",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "colorPick.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_icon": "Highlight.png",
        "default_popup": "index.html",
        "default_title": "Highlight Me"
    }
}