Selection Highlighter

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

Co to jest Selection Highlighter?

Selection Highlighter to rozszerzenie Chrome opracowane przez https://neaumusic.com, a jego główną funkcją jest „Highlight occurrences of selected text, with or without a keypress.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Selection Highlighter

Pobierz pliki rozszerzeń Selection Highlighter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Selection Highlighter Selection Highlighter
ID nepmkgohgoagfgcoegjaggacodcpdibj
Oficjalny URL https://chromewebstore.google.com/detail/selection-highlighter/nepmkgohgoagfgcoegjaggacodcpdibj
Opis Highlight occurrences of selected text, with or without a keypress.
Rozmiar pliku 470 KB
Liczba instalacji 8,418
Aktualna Wersja 3.1.0
Ostatnia Aktualizacja 2024-01-14
Data Publikacji 2020-06-07
Ocena 4.59/5 Łącznie 78 Oceny
Deweloper https://neaumusic.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/neaumusic/selection-highlighter
Adres URL Strony Pomocy https://github.com/neaumusic/selection-highlighter/issues
Obsługiwane Języki 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"
    ]
}