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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://ihainan.me และคุณลักษณะหลักของมันคือ "Highlight text in Evernote Web with any color using shortcut "Ctrl (Control on macOS) + Shift + h"."

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Evernote Web Highlight Tool

ดาวน์โหลดไฟล์ส่วนขยาย Evernote Web Highlight Tool ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                                            

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Evernote Web Highlight Tool Evernote Web Highlight Tool
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
}