Evernote Web Highlight Tool
Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h".
What is Evernote Web Highlight Tool?
Evernote Web Highlight Tool is a Chrome extension developed by http://ihainan.me, and its main feature is "Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h".".
Extension Screenshots
Download Evernote Web Highlight Tool Extension CRX File
Download Evernote Web Highlight Tool extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension Basic Information
Name | |
ID | pfjhdmfipngjpikphjjanhidiaiodggj |
Official URL | https://chrome.google.com/webstore/detail/evernote-web-highlight-to/pfjhdmfipngjpikphjjanhidiaiodggj |
Description | Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h". |
File Size | 59.15 KB |
Installation Count | 266 |
Current Version | 1.1 |
Last Updated | 2019-01-14 |
Publish Date | 2019-01-14 |
Rating | 5.00/5 Total 1 Ratings |
Developer | http://ihainan.me |
Payment Type | free |
Supported Languages | 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 } |