Evernote Web Highlight Tool

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

Was ist Evernote Web Highlight Tool?

Evernote Web Highlight Tool ist eine Chrome-Erweiterung, die von http://ihainan.me entwickelt wurde, und ihr Hauptmerkmal ist "Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h".".

Erweiterungsscreenshots

Evernote Web Highlight Tool-Erweiterungs-CRX-Datei herunterladen

Laden Sie Evernote Web Highlight Tool-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                                            

Grundlegende Informationen zur Erweiterung

Name Evernote Web Highlight Tool Evernote Web Highlight Tool
ID pfjhdmfipngjpikphjjanhidiaiodggj
Offizielle URL https://chrome.google.com/webstore/detail/evernote-web-highlight-to/pfjhdmfipngjpikphjjanhidiaiodggj
Beschreibung Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h".
Dateigröße 59.15 KB
Installationsanzahl 266
Aktuelle Version 1.1
Letztes Update 2019-01-14
Veröffentlichungsdatum 2019-01-14
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler http://ihainan.me
Zahlungsart free
Unterstützte Sprachen 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
}