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 |
| 官方網址 | 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
} | |