Search Engine Switch

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

Search Engine Switchคืออะไร?

Search Engine Switch เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://bitbute.tech และคุณลักษณะหลักของมันคือ "Easily switch among multiple search engines without having to retype the search repeatedly."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Search Engine Switch

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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": [
                ""
            ]
        }
    ]
}