Supersearch

This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch

Supersearchとは何ですか?

Supersearchはkoljaによって開発されたChromeの拡張機能で、その主な機能は「This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch」です。

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

screenshot

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

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

拡張機能の使用方法

                        This plugin enables you to fulltext-supersearch all tabs in chrome. 

Open the extension with shortkeys:
  windows: Alt+Shift+F
  mac: Command+Shift+F
  chromeos: Alt+Shift+F
  linux: Alt+Shift+F

Start typing and see the first 3 results from each tab matching your search. Select your result by mouse, tab-key or arrow-keys to jump to the tab. 

Find more information on https://gitlab.com/Schuemann/chrome-supersearch.                    

拡張機能の基本情報

名前 Supersearch Supersearch
ID ijajhcdgklelnpmjodhfhjooiljfhdpl
公式URL https://chromewebstore.google.com/detail/supersearch/ijajhcdgklelnpmjodhfhjooiljfhdpl
説明 This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch
ファイルサイズ 264 KB
インストール数 151
現在のバージョン 1.2
最終更新日 2024-02-23
公開日 2023-06-16
評価 5.00/5 合計 3 レビュー
開発者 kolja
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://gitlab.com/Schuemann/chrome-supersearch
ヘルプページのURL https://gitlab.com/Schuemann/chrome-supersearch
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Supersearch",
    "version": "1.2",
    "author": "[email protected]",
    "description": "This plugin enables you to fulltext-supersearch all your tabs. Find more on https:\/\/gitlab.com\/Schuemann\/chrome-supersearch",
    "icons": {
        "16": "images\/16px-Magnifying_glass_icon.svg.png",
        "32": "images\/32px-Magnifying_glass_icon.svg.png",
        "48": "images\/48px-Magnifying_glass_icon.svg.png",
        "128": "images\/128px-Magnifying_glass_icon.svg.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+Shift+F",
                "windows": "Alt+Shift+F",
                "mac": "Command+Shift+F",
                "chromeos": "Alt+Shift+F",
                "linux": "Alt+Shift+F"
            }
        }
    }
}