Evernote Web Highlight Tool
Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h".
Qu'est-ce que Evernote Web Highlight Tool ?
Evernote Web Highlight Tool est une extension Chrome développée par http://ihainan.me, et sa fonction principale est "Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h".".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Evernote Web Highlight Tool
Téléchargez les fichiers d'extension Evernote Web Highlight Tool au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Informations de Base sur l'Extension
Nom | |
ID | pfjhdmfipngjpikphjjanhidiaiodggj |
URL Officiel | 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". |
Taille du Fichier | 59.15 KB |
Nombre d'Installations | 266 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2019-01-14 |
Date de Publication | 2019-01-14 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | http://ihainan.me |
Type de Paiement | free |
Langues Prises en Charge | 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 } |