Search Engine Switch

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

Search Engine Switch क्या है?

Search Engine Switch https://bitbute.tech द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily switch among multiple search engines without having to retype the search repeatedly."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Search Engine Switch एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Search Engine Switch Search Engine Switch
ID akelhfnaodcdhfakigbacohhcklobpnp
आधिकारिक URL https://chromewebstore.google.com/detail/search-engine-switch/akelhfnaodcdhfakigbacohhcklobpnp
विवरण Easily switch among multiple search engines without having to retype the search repeatedly.
फ़ाइल का आकार 542 KB
स्थापना संख्या 165
वर्तमान संस्करण 1.0.5
अंतिम अपडेट 2022-06-13
प्रकाशन तिथि 2022-02-01
रेटिंग 4.56/5 कुल 9 रेटिंग्स
डेवलपर https://bitbute.tech
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://bitbute.tech
सहायता पृष्ठ URL https://bitbute.tech
समर्थित भाषाएँ 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": [
                ""
            ]
        }
    ]
}