Selection Highlighter

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

Hvad er Selection Highlighter?

Selection Highlighter er en Chrome-udvidelse udviklet af https://neaumusic.com, og dens hovedfunktion er "Highlight occurrences of selected text, with or without a keypress.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Selection Highlighter-udvidelses-CRX-fil

Download Selection Highlighter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Selection Highlighter Selection Highlighter
ID nepmkgohgoagfgcoegjaggacodcpdibj
Officiel URL https://chromewebstore.google.com/detail/selection-highlighter/nepmkgohgoagfgcoegjaggacodcpdibj
Beskrivelse Highlight occurrences of selected text, with or without a keypress.
Filstørrelse 470 KB
Antal Installationer 8,418
Nuværende Version 3.1.0
Senest Opdateret 2024-01-14
Udgivelsesdato 2020-06-07
Bedømmelse 4.59/5 Samlet 78 Bedømmelser
Udvikler https://neaumusic.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/neaumusic/selection-highlighter
Hjælpeside-URL https://github.com/neaumusic/selection-highlighter/issues
Understøttede Sprog 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"
    ]
}