G.B.Switcher

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

Vad är G.B.Switcher?

G.B.Switcher är en Chrome-tillägg utvecklad av ehaagwlke, och dess huvudfunktion är "A fast switcher for switching between google and baidu, without losing your search keywords".

Tilläggsskärmbilder

screenshot

Ladda ner G.B.Switcher-förlängningens CRX-fil

Ladda ner G.B.Switcher-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn G.B.Switcher G.B.Switcher
ID ljmfoobgcjjgbolcamahhhidjgcehcgp
Officiell webbadress https://chromewebstore.google.com/detail/gbswitcher/ljmfoobgcjjgbolcamahhhidjgcehcgp
Beskrivning A fast switcher for switching between google and baidu, without losing your search keywords
Filstorlek 10.51 KB
Antal Installationer 90
Aktuell Version 0.5
Senast Uppdaterad 2015-11-15
Publiceringsdatum 2015-11-14
Betyg 4.67/5 Totalt 9 Betyg
Utvecklare ehaagwlke
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}