Highlighter + Notes

Highlighter and Notes for Webpages

O que é Highlighter + Notes?

Highlighter + Notes é uma extensão do Chrome desenvolvida por Prateek Chawla, e sua principal característica é "Highlighter and Notes for Webpages".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Highlighter + Notes

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

                        Highlight important text and take notes effortlessly.

This extension enables you to highlight text on any web page. Choose from five different colors to highlight text, and the next time you visit the page your highlights will be waiting for you. 
Also, you can take short notes that are retained on your next visit.

Simply open up the Popup or use keyboard hotkeys to get started.
Keyboard Hotkeys: 
Press Ctrl + Shift + H to toggle highlighter. 
Press Ctrl + Shift + E to toggle eraser.

** Highlighter may not work on some websites due to their structure **                    

Informações Básicas da Extensão

Nome Highlighter + Notes Highlighter + Notes
ID kllkegeooedapeomenkneoilkodcleaa
URL Oficial https://chromewebstore.google.com/detail/highlighter-+-notes/kllkegeooedapeomenkneoilkodcleaa
Descrição Highlighter and Notes for Webpages
Tamanho do Arquivo 766 KB
Contagem de Instalações 3,139
Versão Atual 1.0.0
Última Atualização 2020-05-31
Data de Publicação 2020-05-30
Classificação 3.75/5 Total de 20 Avaliações
Desenvolvedor Prateek Chawla
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": "Highlighter + Notes",
    "version": "1.0.0",
    "description": "Highlighter and Notes for Webpages",
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "64": "images\/icon_64.png",
        "128": "images\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon_128.png",
        "default_popup": "popup\/highlighter-popup.html",
        "default_title": "Highlighter + Notes"
    },
    "author": "Prateek Chawla",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-scripts\/highlighter-util.js",
                "content-scripts\/highlighter.js",
                "content-scripts\/dispatch-highlighter.js",
                "content-scripts\/render-highlights.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "commands": {
        "add-highlight": {
            "suggested_key": {
                "default": "Ctrl+Shift+H",
                "mac": "Command+Shift+H"
            },
            "description": "Add Highlight"
        },
        "remove-highlight": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Remove Highlight"
        }
    }
}