Selection Highlighter

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

Apa itu Selection Highlighter?

Selection Highlighter adalah ekstensi Chrome yang dikembangkan oleh https://neaumusic.com, dan fitur utamanya adalah "Highlight occurrences of selected text, with or without a keypress.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Selection Highlighter

Unduh file ekstensi Selection Highlighter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Selection Highlighter Selection Highlighter
ID nepmkgohgoagfgcoegjaggacodcpdibj
URL Resmi https://chromewebstore.google.com/detail/selection-highlighter/nepmkgohgoagfgcoegjaggacodcpdibj
Deskripsi Highlight occurrences of selected text, with or without a keypress.
Ukuran File 470 KB
Jumlah Instalasi 8,418
Versi Saat Ini 3.1.0
Terakhir Diperbarui 2024-01-14
Tanggal Publikasi 2020-06-07
Penilaian 4.59/5 Total 78 Penilaian
Pengembang https://neaumusic.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/neaumusic/selection-highlighter
URL Halaman Bantuan https://github.com/neaumusic/selection-highlighter/issues
Bahasa yang Didukung 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"
    ]
}