If you want it so search google.com, just go to C:\Users\UserNameGoesHere\AppData\Local\Google\Chrome\User Data\Default\Extensions\efpmngkgleogihnncnapggoecominiih\1.2.1. And find the file named "dragngo", open it with notepad, and you'll see this:Change the google.cn to google.com and save the file (over write the current one). And reload, and you got a english google search. Oh and to change the search engine. Replace "http://www.google.cn/search?aq=f&ie=UTF-8&q=" and add one of the following:function cancel (e)
{
if (e.preventDefault)
{
e.preventDefault ();
}
return false;
}
document.addEventListener ('dragover', cancel, false);
document.addEventListener ('dragenter', cancel, false);
document.addEventListener ('drop', function (e)
{
// stops the browser from redirecting off to the text.
if (e.preventDefault) e.preventDefault ();
var link = e.dataTransfer.getData('Text');
if (link.indexOf ('http://') < 0)
{
link = 'http://www.google.cn/search?aq=f&ie=UTF-8&q=' + link;
}
//open port to dragngo extension
var port = chrome.extension.connect('dragngo');
//send drag event data text
port.postMessage({message: 'tab', values: link});
return false;
});
List Of Search Engines:
Youtube: http://www.youtube.com/results?search_type=&search_query=
Amazon: http://www.amazon.com/s/ref=nb_ss_gw?url=search-alias%3Daps&field-keywords=
Google: http://www.google.com/search?aq=f&ie=UTF-8&q=
Google Images: http://images.google.com/images?hl=en&q=
Google Maps: http://maps.google.com/maps?q=
Wikipedia: http://en.wikipedia.org/w/index.php?title=Special:Search&search=
Wolfram Aplha: http://www79.wolframalpha.com/input/?i=


LinkBack URL
About LinkBacks






Reply With Quote
..


