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文件

下載G.B.Switcher擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}