Highlighter + Notes

Highlighter and Notes for Webpages

Highlighter + Notesคืออะไร?

Highlighter + Notes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Prateek Chawla และคุณลักษณะหลักของมันคือ "Highlighter and Notes for Webpages"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Highlighter + Notes

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

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

                        Highlight important text and take notes effortlessly.

This extension enables you to highlight text on any web page. Choose from five different colors to highlight text, and the next time you visit the page your highlights will be waiting for you. 
Also, you can take short notes that are retained on your next visit.

Simply open up the Popup or use keyboard hotkeys to get started.
Keyboard Hotkeys: 
Press Ctrl + Shift + H to toggle highlighter. 
Press Ctrl + Shift + E to toggle eraser.

** Highlighter may not work on some websites due to their structure **                    

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

ชื่อ Highlighter + Notes Highlighter + Notes
ID kllkegeooedapeomenkneoilkodcleaa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/highlighter-+-notes/kllkegeooedapeomenkneoilkodcleaa
คำอธิบาย Highlighter and Notes for Webpages
ขนาดไฟล์ 766 KB
จำนวนการติดตั้ง 3,139
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2020-05-31
วันที่เผยแพร่ 2020-05-30
คะแนน 3.75/5 รวมทั้งหมด 20 คะแนน
ผู้พัฒนา Prateek Chawla
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Highlighter + Notes",
    "version": "1.0.0",
    "description": "Highlighter and Notes for Webpages",
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "64": "images\/icon_64.png",
        "128": "images\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon_128.png",
        "default_popup": "popup\/highlighter-popup.html",
        "default_title": "Highlighter + Notes"
    },
    "author": "Prateek Chawla",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-scripts\/highlighter-util.js",
                "content-scripts\/highlighter.js",
                "content-scripts\/dispatch-highlighter.js",
                "content-scripts\/render-highlights.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "commands": {
        "add-highlight": {
            "suggested_key": {
                "default": "Ctrl+Shift+H",
                "mac": "Command+Shift+H"
            },
            "description": "Add Highlight"
        },
        "remove-highlight": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Remove Highlight"
        }
    }
}