Evernote Web Highlight Tool
Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h".
Evernote Web Highlight Toolとは何ですか?
Evernote Web Highlight Toolはhttp://ihainan.meによって開発されたChromeの拡張機能で、その主な機能は「Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h".」です。
拡張機能のスクリーンショット
Evernote Web Highlight Tool拡張機能のCRXファイルをダウンロード
Evernote Web Highlight Tool拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
拡張機能の基本情報
名前 | |
ID | pfjhdmfipngjpikphjjanhidiaiodggj |
公式URL | https://chrome.google.com/webstore/detail/evernote-web-highlight-to/pfjhdmfipngjpikphjjanhidiaiodggj |
説明 | Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h". |
ファイルサイズ | 59.15 KB |
インストール数 | 266 |
現在のバージョン | 1.1 |
最終更新日 | 2019-01-14 |
公開日 | 2019-01-14 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | http://ihainan.me |
支払い方法 | free |
対応言語 | 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 } |