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
} | |