Search Engine Switch

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

Vad är Search Engine Switch?

Search Engine Switch är en Chrome-tillägg utvecklad av https://bitbute.tech, och dess huvudfunktion är "Easily switch among multiple search engines without having to retype the search repeatedly.".

Tilläggsskärmbilder

screenshot

Ladda ner Search Engine Switch-förlängningens CRX-fil

Ladda ner Search Engine Switch-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Search Engine Switch Search Engine Switch
ID akelhfnaodcdhfakigbacohhcklobpnp
Officiell webbadress https://chromewebstore.google.com/detail/search-engine-switch/akelhfnaodcdhfakigbacohhcklobpnp
Beskrivning Easily switch among multiple search engines without having to retype the search repeatedly.
Filstorlek 542 KB
Antal Installationer 165
Aktuell Version 1.0.5
Senast Uppdaterad 2022-06-13
Publiceringsdatum 2022-02-01
Betyg 4.56/5 Totalt 9 Betyg
Utvecklare https://bitbute.tech
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://bitbute.tech
Hjälpsida URL https://bitbute.tech
Stödda Språk 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": [
                ""
            ]
        }
    ]
}