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”。
扩展截图
下载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 |
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 } |