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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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": [
                ""
            ]
        }
    ]
}