Selection Highlighter

Automatically highlight all occurrences of current selection on current page.

Selection Highlighterคืออะไร?

Selection Highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tao และคุณลักษณะหลักของมันคือ "Automatically highlight all occurrences of current selection on current page."

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

screenshot
screenshot
screenshot

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

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

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

                        Selection highlighter will help you automatically highlight all occurrences of current selection on current page, also works for shadow DOM pages.
The extension also allow you to toggle on/off the feature from options page, also change the default configurations like highlight color etc

Release notes:

v0.0.3:
- Allow config the threshold to ignore selection when apply highlighting
- Always ignore `style` tag when highlighting, avoid messing up the page                    

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

ชื่อ Selection Highlighter Selection Highlighter
ID maafgdeicpceceblgclafehagjndfjig
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/selection-highlighter/maafgdeicpceceblgclafehagjndfjig
คำอธิบาย Automatically highlight all occurrences of current selection on current page.
ขนาดไฟล์ 96.84 KB
จำนวนการติดตั้ง 112
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2020-07-17
วันที่เผยแพร่ 2020-06-03
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Tao
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/taoalpha/selection-highlighter
URL หน้าช่วยเหลือ https://github.com/taoalpha/selection-highlighter
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Selection Highlighter",
    "description": "Automatically highlight all occurrences of current selection on current page.",
    "version": "0.0.3",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Selection Highlighter"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "content_script.js"
            ]
        }
    ],
    "content_security_policy": "default-src 'none'; script-src 'self'; style-src 'unsafe-inline'; connect-src https:\/\/*",
    "permissions": [
        "activeTab",
        "",
        "storage",
        "tabs"
    ]
}