Web Highlighter

This extension will help you store and highlight phrases or chunks of text, and add description if needed.

O que é Web Highlighter?

Web Highlighter é uma extensão do Chrome desenvolvida por jfernando0911, e sua principal característica é "This extension will help you store and highlight phrases or chunks of text, and add description if needed.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Web Highlighter

Baixe arquivos de extensão Web Highlighter 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

                        Web higlighter is an extension for chrome that helps you highlight words, phrases or chunks of text. You can add descriptions, translation or any kind of details to the highlights. Everytime you find a word on the web that you saved in your database it will be highlighted with their respective details, descriptions or details.

This extension was heavily inspired by lingq and learning with texts.                    

Informações Básicas da Extensão

Nome Web Highlighter Web Highlighter
ID laoclledadegilngghaiilbepfgpekil
URL Oficial https://chromewebstore.google.com/detail/web-highlighter/laoclledadegilngghaiilbepfgpekil
Descrição This extension will help you store and highlight phrases or chunks of text, and add description if needed.
Tamanho do Arquivo 261 KB
Contagem de Instalações 3,629
Versão Atual 0.3.3
Última Atualização 2020-07-17
Data de Publicação 2020-06-01
Classificação 3.71/5 Total de 7 Avaliações
Desenvolvedor jfernando0911
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Highlighter",
    "description": "This extension will help you store and highlight phrases or chunks of text, and add description if needed.",
    "version": "0.3.3",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "css": [
                "highlightStyle.css"
            ],
            "js": [
                "mark.es6.min.js",
                "contentScript.js",
                "Functions.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Web Highlighter"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "tabs"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "Functions.js",
            "backgroundScript.js"
        ]
    }
}