Evernote Web Highlight Tool

Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h".

O que é Evernote Web Highlight Tool?

Evernote Web Highlight Tool é uma extensão do Chrome desenvolvida por http://ihainan.me, e sua principal característica é "Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h".".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão Evernote Web Highlight Tool

Baixe arquivos de extensão Evernote Web Highlight Tool 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

                                            

Informações Básicas da Extensão

Nome Evernote Web Highlight Tool Evernote Web Highlight Tool
ID pfjhdmfipngjpikphjjanhidiaiodggj
URL Oficial https://chrome.google.com/webstore/detail/evernote-web-highlight-to/pfjhdmfipngjpikphjjanhidiaiodggj
Descrição Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h".
Tamanho do Arquivo 59.15 KB
Contagem de Instalações 266
Versão Atual 1.1
Última Atualização 2019-01-14
Data de Publicação 2019-01-14
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor http://ihainan.me
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Evernote Web Highlight Tool",
    "version": "1.1",
    "description": "Highlight text in Evernote Web with any color using shortcut \"Ctrl (Control on macOS) + Shift + h\".",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.evernote.com\/*\/web*"
            ],
            "js": [
                "js\/hotkeys.min.js",
                "js\/highlight.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "manifest_version": 2
}