Search Engine Switch

Easily switch among multiple search engines without having to retype the search repeatedly.

Cos'è Search Engine Switch?

Search Engine Switch è un'estensione di Chrome sviluppata da https://bitbute.tech, e la sua funzione principale è "Easily switch among multiple search engines without having to retype the search repeatedly.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Search Engine Switch

Scarica i file di estensione Search Engine Switch 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 extension makes it easy to search for same terms across multiple search engines. 
Suppose you searched on google, but would also like to see the search on bing, it can be done with a single click. The extension is aware of your search text and knows how to search the same thing in another search engine.                    

Informazioni di Base sull'Estensione

Nome Search Engine Switch Search Engine Switch
ID akelhfnaodcdhfakigbacohhcklobpnp
URL Ufficiale https://chromewebstore.google.com/detail/search-engine-switch/akelhfnaodcdhfakigbacohhcklobpnp
Descrizione Easily switch among multiple search engines without having to retype the search repeatedly.
Dimensione del File 542 KB
Conteggio Installazioni 165
Versione Corrente 1.0.5
Ultimo Aggiornamento 2022-06-13
Data di Pubblicazione 2022-02-01
Valutazione 4.56/5 Totale 9 Valutazioni
Sviluppatore https://bitbute.tech
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://bitbute.tech
URL della Pagina di Aiuto https://bitbute.tech
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.5",
    "short_name": "Search Engine Switch",
    "name": "Search Engine Switch",
    "description": "Easily switch among multiple search engines without having to retype the search repeatedly.",
    "action": {
        "default_title": "Search Engine Switch",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "icons": {
        "16": "img\/sesIcon16.png",
        "48": "img\/sesIcon48.png",
        "128": "img\/sesIcon128.png"
    },
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "img"
            ],
            "matches": [
                ""
            ]
        }
    ]
}