Search Engine Switch

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

Search Engine Switch là gì?

Search Engine Switch là một tiện ích mở rộng Chrome được phát triển bởi https://bitbute.tech, và tính năng chính của nó là "Easily switch among multiple search engines without having to retype the search repeatedly.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Search Engine Switch

Tải xuống các tệp mở rộng Search Engine Switch dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Search Engine Switch Search Engine Switch
ID akelhfnaodcdhfakigbacohhcklobpnp
URL Chính Thức https://chromewebstore.google.com/detail/search-engine-switch/akelhfnaodcdhfakigbacohhcklobpnp
Mô tả Easily switch among multiple search engines without having to retype the search repeatedly.
Kích Thước Tệp 542 KB
Số Lần Cài Đặt 165
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2022-06-13
Ngày Phát Hành 2022-02-01
Đánh Giá 4.56/5 Tổng số 9 Đánh Giá
Nhà Phát Triển https://bitbute.tech
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://bitbute.tech
URL Trang Trợ Giúp https://bitbute.tech
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}