G.B.Switcher

A fast switcher for switching between google and baidu, without losing your search keywords

G.B.Switcher란 무엇입니까?

G.B.Switcher은(는) ehaagwlke에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A fast switcher for switching between google and baidu, without losing your search keywords"입니다.

확장 프로그램 스크린샷

screenshot

G.B.Switcher 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        G.B.Switcher has only one function: when you are googling something, click the icon in the address bar, chrome will open a new tab, and show you the searching result of baidu.com, and vice versa.

The extension only works when surfing google.com, google.com.hk, google.cn(both http and https protocols) and baidu.

For bug reporting and feature request, mail me at [email protected].

========================================================
2015-11-15:
* It now works AGAIN. Minor bug fixed.

========================================================
2010-08-07:
*High CPU usage problem solved.
*Since google's SSL search service cannot be reached in China, it uses the http version
*Google search result will be open in a new tab

========================================================
* Thanks to the inconsistency of baidu's searching url parameters between different search products, the extension may not work when searching for news, images and so on. The bug was fixed.
* Some optimization of the javascript code.
===================================================
2010-08-07:
*高CPU占用问题解决。
*因为https杯具了,所以改回了http。一般情况下没有太大的问题了
*Google搜索结果会在新标签中打开

------------------------------

介个东东说白了就是为懒人准备的,因为chrome允许懒人直接在地址栏里边敲关键字,而我又用得很爽,但是偶尔Google的结果很难看,去百度呢,又懒得得再敲一遍网址和关键字,所以就搞了这个东东。

使用方法:
安装完了会在地址栏最后显示一个图标,每次搜索的时候,等google的页面出来了,点一下这个图标,就自动新开个tab,然后去百度里边搜你的关键字。

偶尔可能会有crash的情况。
如果是被墙的词,插件取不到词。

有问题,有建议,都欢迎来信 ehaagwlke#gmail.com                    

확장 프로그램 기본 정보

이름 G.B.Switcher G.B.Switcher
ID ljmfoobgcjjgbolcamahhhidjgcehcgp
공식 URL https://chromewebstore.google.com/detail/gbswitcher/ljmfoobgcjjgbolcamahhhidjgcehcgp
설명 A fast switcher for switching between google and baidu, without losing your search keywords
파일 크기 10.51 KB
설치 횟수 90
현재 버전 0.5
최근 업데이트 2015-11-15
출시 날짜 2015-11-14
평점 4.67/5 총 9 개의 평점
개발자 ehaagwlke
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "G.B.Switcher",
    "version": "0.5",
    "description": "A fast switcher for switching between google and baidu, without losing your search keywords",
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "page_action": {
        "default_icon": "icon-19.png",
        "default_title": "GBSwitcher"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.baidu.com\/*",
                "*:\/\/*.google.com\/*",
                "*:\/\/*.google.cn\/*",
                "*:\/\/*.google.com.hk\/*",
                "*:\/\/*.google.co.uk\/*",
                "*:\/\/*.google.co.jp\/*",
                "*:\/\/*.google.us\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "windows"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2
}