Evernote Web Highlight Tool
Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h".
Cos'è Evernote Web Highlight Tool?
Evernote Web Highlight Tool è un'estensione di Chrome sviluppata da http://ihainan.me, e la sua funzione principale è "Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h".".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Evernote Web Highlight Tool
Scarica i file di estensione Evernote Web Highlight Tool in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Informazioni di Base sull'Estensione
| Nome | |
| ID | pfjhdmfipngjpikphjjanhidiaiodggj |
| URL Ufficiale | https://chrome.google.com/webstore/detail/evernote-web-highlight-to/pfjhdmfipngjpikphjjanhidiaiodggj |
| Descrizione | Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h". |
| Dimensione del File | 59.15 KB |
| Conteggio Installazioni | 266 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2019-01-14 |
| Data di Pubblicazione | 2019-01-14 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | http://ihainan.me |
| Tipo di Pagamento | free |
| Lingue Supportate | 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
} | |