Selection Highlighter

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

Vad är Selection Highlighter?

Selection Highlighter är en Chrome-tillägg utvecklad av https://neaumusic.com, och dess huvudfunktion är "Highlight occurrences of selected text, with or without a keypress.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Selection Highlighter-förlängningens CRX-fil

Ladda ner Selection Highlighter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Selection Highlighter Selection Highlighter
ID nepmkgohgoagfgcoegjaggacodcpdibj
Officiell webbadress https://chromewebstore.google.com/detail/selection-highlighter/nepmkgohgoagfgcoegjaggacodcpdibj
Beskrivning Highlight occurrences of selected text, with or without a keypress.
Filstorlek 470 KB
Antal Installationer 8,418
Aktuell Version 3.1.0
Senast Uppdaterad 2024-01-14
Publiceringsdatum 2020-06-07
Betyg 4.59/5 Totalt 78 Betyg
Utvecklare https://neaumusic.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/neaumusic/selection-highlighter
Hjälpsida URL https://github.com/neaumusic/selection-highlighter/issues
Stödda Språk 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"
    ]
}