Evernote Web Highlight Tool

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

Hvad er Evernote Web Highlight Tool?

Evernote Web Highlight Tool er en Chrome-udvidelse udviklet af http://ihainan.me, og dens hovedfunktion er "Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h".".

Udvidelsesskærmbilleder

Download Evernote Web Highlight Tool-udvidelses-CRX-fil

Download Evernote Web Highlight Tool-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                                            

Grundlæggende oplysninger om udvidelsen

Navn Evernote Web Highlight Tool Evernote Web Highlight Tool
ID pfjhdmfipngjpikphjjanhidiaiodggj
Officiel URL https://chrome.google.com/webstore/detail/evernote-web-highlight-to/pfjhdmfipngjpikphjjanhidiaiodggj
Beskrivelse Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h".
Filstørrelse 59.15 KB
Antal Installationer 266
Nuværende Version 1.1
Senest Opdateret 2019-01-14
Udgivelsesdato 2019-01-14
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler http://ihainan.me
Betalingsmetode free
Understøttede Sprog 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
}