Selection Highlighter

Automatically highlight all occurrences of current selection on current page.

Selection Highlighterとは何ですか?

Selection HighlighterはTaoによって開発されたChromeの拡張機能で、その主な機能は「Automatically highlight all occurrences of current selection on current page.」です。

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

screenshot
screenshot
screenshot

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

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

拡張機能の使用方法

                        Selection highlighter will help you automatically highlight all occurrences of current selection on current page, also works for shadow DOM pages.
The extension also allow you to toggle on/off the feature from options page, also change the default configurations like highlight color etc

Release notes:

v0.0.3:
- Allow config the threshold to ignore selection when apply highlighting
- Always ignore `style` tag when highlighting, avoid messing up the page                    

拡張機能の基本情報

名前 Selection Highlighter Selection Highlighter
ID maafgdeicpceceblgclafehagjndfjig
公式URL https://chromewebstore.google.com/detail/selection-highlighter/maafgdeicpceceblgclafehagjndfjig
説明 Automatically highlight all occurrences of current selection on current page.
ファイルサイズ 96.84 KB
インストール数 112
現在のバージョン 0.0.3
最終更新日 2020-07-17
公開日 2020-06-03
評価 3.00/5 合計 2 レビュー
開発者 Tao
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/taoalpha/selection-highlighter
ヘルプページのURL https://github.com/taoalpha/selection-highlighter
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Selection Highlighter",
    "description": "Automatically highlight all occurrences of current selection on current page.",
    "version": "0.0.3",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Selection Highlighter"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "content_script.js"
            ]
        }
    ],
    "content_security_policy": "default-src 'none'; script-src 'self'; style-src 'unsafe-inline'; connect-src https:\/\/*",
    "permissions": [
        "activeTab",
        "",
        "storage",
        "tabs"
    ]
}