replace it with your currrent file. (userdata/extension)
Features: Recognized url without protocol from other program (e.g. just drag "www.google.com")
This is a discussion on Enhanced Drag'n go patch within the Chrome Plugins section, part of the Google Chrome category: replace it with your currrent file. (userdata/extension) Features: Recognized url without protocol from other program (e.g. just drag "www.google.com")...
replace it with your currrent file. (userdata/extension)
Features: Recognized url without protocol from other program (e.g. just drag "www.google.com")
welcome to ChromePlugins and thanks for sharing
a better description of what the extension can do is appreciated;
if the extension is an adaption, credit should be given to the original creator
A BIG thank-you to no2song for the original code, and thanks to msxcms for the patch!
It seems there is a bug in the patch, though: When I try to drag/go a URL such as:
https://adwords.google.com/select/Login?sourceid=awo&subid=ww-en-et-ads-oldawhptest6<mpl=adwords
it changes the URL in the new tab to:
http://https//adwords.google.com/select/Login?sourceid=awo&subid=ww-en-et-ads-oldawhptest6<mpl=adwords
Note the URL-changes... To fix this, I changed line 23 from:
if (test.match(regExp))
to:
if (test.match(regExp) && link == null)
This seems to have solved it. I've attached the corrected code.