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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    ]
}