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によって開発されたChromeの拡張機能で、その主な機能は「Easily switch among multiple search engines without having to retype the search repeatedly.」です。

拡張機能のスクリーンショット

screenshot

Search Engine Switch拡張機能のCRXファイルをダウンロード

Search Engine Switch拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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": [
                ""
            ]
        }
    ]
}