Evernote Web Highlight Tool
Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h".
Vad är Evernote Web Highlight Tool?
Evernote Web Highlight Tool är en Chrome-tillägg utvecklad av http://ihainan.me, och dess huvudfunktion är "Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h".".
Tilläggsskärmbilder
Ladda ner Evernote Web Highlight Tool-förlängningens CRX-fil
Ladda ner Evernote Web Highlight Tool-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Grundläggande Information om Tillägg
Namn | |
ID | pfjhdmfipngjpikphjjanhidiaiodggj |
Officiell webbadress | https://chrome.google.com/webstore/detail/evernote-web-highlight-to/pfjhdmfipngjpikphjjanhidiaiodggj |
Beskrivning | Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h". |
Filstorlek | 59.15 KB |
Antal Installationer | 266 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2019-01-14 |
Publiceringsdatum | 2019-01-14 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | http://ihainan.me |
Betalningssätt | free |
Stödda Språk | 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 } |