Supersearch

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

Cos'è Supersearch?

Supersearch è un'estensione di Chrome sviluppata da kolja, e la sua funzione principale è "This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Supersearch

Scarica i file di estensione Supersearch in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Supersearch Supersearch
ID ijajhcdgklelnpmjodhfhjooiljfhdpl
URL Ufficiale https://chromewebstore.google.com/detail/supersearch/ijajhcdgklelnpmjodhfhjooiljfhdpl
Descrizione This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch
Dimensione del File 264 KB
Conteggio Installazioni 151
Versione Corrente 1.2
Ultimo Aggiornamento 2024-02-23
Data di Pubblicazione 2023-06-16
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore kolja
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://gitlab.com/Schuemann/chrome-supersearch
URL della Pagina di Aiuto https://gitlab.com/Schuemann/chrome-supersearch
Lingue Supportate 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"
            }
        }
    }
}