Selection Highlighter

Highlight occurrences of selected text, with or without a keypress.

Selection Highlighterคืออะไร?

Selection Highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://neaumusic.com และคุณลักษณะหลักของมันคือ "Highlight occurrences of selected text, with or without a keypress."

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

screenshot
screenshot
screenshot

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

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

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

                        For code inspection and document analysis: search for and find keywords.

- No need to press CMD+F
- Maintains current selection
- Open source and configurable options (JavaScript)
- Ensure a "gate" key is pressed
- Match whole word and/or case-insensitive
- Blacklist bad hosts and ancestor HTML nodes

Highlight works on all sites, including GitHub, StackOverflow, HackerNews, Reddit, etc.

See all code involved:
1. Dev Console -> Sources -> Content Scripts -> Selection Highlighter
2. chrome://extensions -> Selection Highlighter -> Options -> Dev Console -> Sources

https://github.com/neaumusic/selection-highlighter                    

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

ชื่อ Selection Highlighter Selection Highlighter
ID nepmkgohgoagfgcoegjaggacodcpdibj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/selection-highlighter/nepmkgohgoagfgcoegjaggacodcpdibj
คำอธิบาย Highlight occurrences of selected text, with or without a keypress.
ขนาดไฟล์ 470 KB
จำนวนการติดตั้ง 8,418
เวอร์ชันปัจจุบัน 3.1.0
อัปเดตครั้งล่าสุด 2024-01-14
วันที่เผยแพร่ 2020-06-07
คะแนน 4.59/5 รวมทั้งหมด 78 คะแนน
ผู้พัฒนา https://neaumusic.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/neaumusic/selection-highlighter
URL หน้าช่วยเหลือ https://github.com/neaumusic/selection-highlighter/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Selection Highlighter",
    "version": "3.1.0",
    "description": "Highlight occurrences of selected text, with or without a keypress.",
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "content_script\/main.js"
            ]
        }
    ],
    "action": {
        "default_icon": "images\/icon.png",
        "default_title": "Selection Highlighter",
        "default_popup": "popup\/index.html"
    },
    "icons": {
        "1024": "images\/icon.png"
    },
    "permissions": [
        "storage"
    ]
}