Search Engine Switch

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

What is Search Engine Switch?

Search Engine Switch is a Chrome extension developed by https://bitbute.tech, and its main feature is "Easily switch among multiple search engines without having to retype the search repeatedly.".

Extension Screenshots

screenshot

Download Search Engine Switch Extension CRX File

Download Search Engine Switch extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Search Engine Switch Search Engine Switch
ID akelhfnaodcdhfakigbacohhcklobpnp
Official URL https://chromewebstore.google.com/detail/search-engine-switch/akelhfnaodcdhfakigbacohhcklobpnp
Description Easily switch among multiple search engines without having to retype the search repeatedly.
File Size 542 KB
Installation Count 165
Current Version 1.0.5
Last Updated 2022-06-13
Publish Date 2022-02-01
Rating 4.56/5 Total 9 Ratings
Developer https://bitbute.tech
Email [email protected]
Payment Type free
Extension Website https://bitbute.tech
Help Page URL https://bitbute.tech
Supported Languages 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": [
                ""
            ]
        }
    ]
}