Markit - Highlighter and Note Taker.

Highlight and add notes to any text on the web with Markit.

Markit - Highlighter and Note Taker.คืออะไร?

Markit - Highlighter and Note Taker. เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Hunter และคุณลักษณะหลักของมันคือ "Highlight and add notes to any text on the web with Markit."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Markit - Highlighter and Note Taker.

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

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

                        If you want to highlight, add notes and remember parts of articles, documentation, or any other web page, now you can. It's simple and the perfect study tool. 

Note: to customize the keyboard shortcuts this extension uses, go to chrome://extensions/shortcuts or brave://extensions/shortcuts, depending on your browser.

Features:
1) View all notes and highlights in one convenient place (just click the extension logo on your browser).

2) Change the highlight color for any and all URLs.

3) Completely free.

4) No account sign up.


How it works:
1) Drag the mouse over text, and highlight it with one keyboard command (Ctrl+K for Windows. Command+K for Mac). 

2) Double-click any existing highlight and enter notes for it in the pop-up prompt.

3) Hold the mouse over a highlight that you've added a note for and it will show up. To make it easier to know which highlights have notes and which don't, ones that have notes will also appear underlined when you hover over it.

4) Double click a highlight to edit or remove your note.

5) When you return to the URL any time in the future, your highlights and notes will always be there. 

6) To unhighlight the block of text, select any part of it and again hit (Ctrl+K for Windows. Command+K for Mac).

7) Clear stored highlights and notes for the URL you're on with another keyboard command (Ctrl+Shift+A for Windows. Command+Shift+A for Mac). Refresh the page and they will be gone. 

8) View all of your notes and highlights separated by URL in the extension popup (just click the extension logo on your browser).

Does not work with email or online PDFs.                    

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

ชื่อ Markit - Highlighter and Note Taker. Markit - Highlighter and Note Taker.
ID oilpcbohncpdjdadofhbldfmojneciop
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/markit-highlighter-and-no/oilpcbohncpdjdadofhbldfmojneciop
คำอธิบาย Highlight and add notes to any text on the web with Markit.
ขนาดไฟล์ 26.24 KB
จำนวนการติดตั้ง 727
เวอร์ชันปัจจุบัน 3.2
อัปเดตครั้งล่าสุด 2019-11-14
วันที่เผยแพร่ 2019-11-12
คะแนน 3.23/5 รวมทั้งหมด 13 คะแนน
ผู้พัฒนา Hunter
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Markit - Highlighter and Note Taker.",
    "version": "3.2",
    "description": "Highlight and add notes to any text on the web with Markit.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "commands": {
        "highlight_text": {
            "suggested_key": {
                "mac": "Command+K",
                "default": "Ctrl+K"
            },
            "description": "Highlight Selected Text"
        },
        "clear_storage": {
            "suggested_key": {
                "mac": "Command+Shift+A",
                "default": "Ctrl+Shift+A"
            },
            "description": "Clear highlights for current URL"
        }
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "content_script.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "manifest_version": 2
}