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
官方網址 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": [
                ""
            ]
        }
    ]
}