Search Engine Switch

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

Co je Search Engine Switch?

Search Engine Switch je rozšíření Chrome vyvinuté https://bitbute.tech, a jeho hlavní funkcí je „Easily switch among multiple search engines without having to retype the search repeatedly.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Search Engine Switch

Stáhněte si soubory rozšíření Search Engine Switch ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Search Engine Switch Search Engine Switch
ID akelhfnaodcdhfakigbacohhcklobpnp
Oficiální URL https://chromewebstore.google.com/detail/search-engine-switch/akelhfnaodcdhfakigbacohhcklobpnp
Popis Easily switch among multiple search engines without having to retype the search repeatedly.
Velikost souboru 542 KB
Počet instalací 165
Aktuální Verze 1.0.5
Poslední Aktualizace 2022-06-13
Datum Vydání 2022-02-01
Hodnocení 4.56/5 Celkem 9 Hodnocení
Vývojář https://bitbute.tech
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://bitbute.tech
URL Stránky Nápovědy https://bitbute.tech
Podporované Jazyky 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": [
                ""
            ]
        }
    ]
}