Highlit

Highlights all occurrences of the currently selected word on page.

Highlitคืออะไร?

Highlit เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nikola Toshev และคุณลักษณะหลักของมันคือ "Highlights all occurrences of the currently selected word on page."

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

screenshot
screenshot
screenshot

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

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

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

                        An extension that highlights all occurrences of the currently selected word or phrase (recognizing different word forms in English). This is useful to outline central concepts in a text, or visually highlight where a specific identifier is used in code in browser window. Double-click a word on the current page to highlight it and all it's occurrences.                    

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

ชื่อ Highlit Highlit
ID cooahmcpmajfpnanjkdfiejkffphknnm
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/highlit/cooahmcpmajfpnanjkdfiejkffphknnm
คำอธิบาย Highlights all occurrences of the currently selected word on page.
ขนาดไฟล์ 15.58 KB
จำนวนการติดตั้ง 952
เวอร์ชันปัจจุบัน 0.2.2
อัปเดตครั้งล่าสุด 2019-03-08
วันที่เผยแพร่ 2019-03-08
คะแนน 3.19/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา Nikola Toshev
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlit",
    "version": "0.2.2",
    "manifest_version": 2,
    "minimum_chrome_version": "39",
    "description": "Highlights all occurrences of the currently selected word on page.",
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lancasterStemming.js",
                "highlit.min.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "*.map"
    ],
    "permissions": [
        "storage"
    ]
}