Selection Highlighter

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

Cos'è Selection Highlighter?

Selection Highlighter è un'estensione di Chrome sviluppata da https://neaumusic.com, e la sua funzione principale è "Highlight occurrences of selected text, with or without a keypress.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Selection Highlighter

Scarica i file di estensione Selection Highlighter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Selection Highlighter Selection Highlighter
ID nepmkgohgoagfgcoegjaggacodcpdibj
URL Ufficiale https://chromewebstore.google.com/detail/selection-highlighter/nepmkgohgoagfgcoegjaggacodcpdibj
Descrizione Highlight occurrences of selected text, with or without a keypress.
Dimensione del File 470 KB
Conteggio Installazioni 8,418
Versione Corrente 3.1.0
Ultimo Aggiornamento 2024-01-14
Data di Pubblicazione 2020-06-07
Valutazione 4.59/5 Totale 78 Valutazioni
Sviluppatore https://neaumusic.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/neaumusic/selection-highlighter
URL della Pagina di Aiuto https://github.com/neaumusic/selection-highlighter/issues
Lingue Supportate 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"
    ]
}