Search Engine Switch

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

Qu'est-ce que Search Engine Switch ?

Search Engine Switch est une extension Chrome développée par https://bitbute.tech, et sa fonction principale est "Easily switch among multiple search engines without having to retype the search repeatedly.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Search Engine Switch

Téléchargez les fichiers d'extension Search Engine Switch au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Search Engine Switch Search Engine Switch
ID akelhfnaodcdhfakigbacohhcklobpnp
URL Officiel https://chromewebstore.google.com/detail/search-engine-switch/akelhfnaodcdhfakigbacohhcklobpnp
Description Easily switch among multiple search engines without having to retype the search repeatedly.
Taille du Fichier 542 KB
Nombre d'Installations 165
Version Actuelle 1.0.5
Dernière Mise à Jour 2022-06-13
Date de Publication 2022-02-01
Évaluation 4.56/5 Total 9 Évaluations
Développeur https://bitbute.tech
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://bitbute.tech
URL de la Page d'Aide https://bitbute.tech
Langues Prises en Charge 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": [
                ""
            ]
        }
    ]
}