Evernote Web Highlight Tool

Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h".

Evernote Web Highlight Tool là gì?

Evernote Web Highlight Tool là một tiện ích mở rộng Chrome được phát triển bởi http://ihainan.me, và tính năng chính của nó là "Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h".".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Evernote Web Highlight Tool

Tải xuống các tệp mở rộng Evernote Web Highlight Tool dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                                            

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Evernote Web Highlight Tool Evernote Web Highlight Tool
ID pfjhdmfipngjpikphjjanhidiaiodggj
URL Chính Thức https://chrome.google.com/webstore/detail/evernote-web-highlight-to/pfjhdmfipngjpikphjjanhidiaiodggj
Mô tả Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h".
Kích Thước Tệp 59.15 KB
Số Lần Cài Đặt 266
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2019-01-14
Ngày Phát Hành 2019-01-14
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển http://ihainan.me
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}