G.B.Switcher

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

G.B.Switcher là gì?

G.B.Switcher là một tiện ích mở rộng Chrome được phát triển bởi ehaagwlke, và tính năng chính của nó là "A fast switcher for switching between google and baidu, without losing your search keywords".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng G.B.Switcher

Tải xuống các tệp mở rộng G.B.Switcher dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên G.B.Switcher G.B.Switcher
ID ljmfoobgcjjgbolcamahhhidjgcehcgp
URL Chính Thức https://chromewebstore.google.com/detail/gbswitcher/ljmfoobgcjjgbolcamahhhidjgcehcgp
Mô tả A fast switcher for switching between google and baidu, without losing your search keywords
Kích Thước Tệp 10.51 KB
Số Lần Cài Đặt 90
Phiên Bản Hiện Tại 0.5
Cập Nhật Lần Cuối 2015-11-15
Ngày Phát Hành 2015-11-14
Đánh Giá 4.67/5 Tổng số 9 Đánh Giá
Nhà Phát Triển ehaagwlke
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}