Selection Highlighter

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

Selection Highlighterとは何ですか?

Selection Highlighterはhttps://neaumusic.comによって開発されたChromeの拡張機能で、その主な機能は「Highlight occurrences of selected text, with or without a keypress.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Selection Highlighter拡張機能のCRXファイルをダウンロード

Selection Highlighter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Selection Highlighter Selection Highlighter
ID nepmkgohgoagfgcoegjaggacodcpdibj
公式URL https://chromewebstore.google.com/detail/selection-highlighter/nepmkgohgoagfgcoegjaggacodcpdibj
説明 Highlight occurrences of selected text, with or without a keypress.
ファイルサイズ 470 KB
インストール数 8,418
現在のバージョン 3.1.0
最終更新日 2024-01-14
公開日 2020-06-07
評価 4.59/5 合計 78 レビュー
開発者 https://neaumusic.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/neaumusic/selection-highlighter
ヘルプページのURL https://github.com/neaumusic/selection-highlighter/issues
対応言語 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"
    ]
}