Cleans URL's from various popular sites.
< 脚本 General URL Cleaner 的反馈
Fix for eBay and orig_cvip=trueorig_cvip=true is the querystring parameter required for the "see original listing" link to work on completed auctions.Line 179 should use this:
orig_cvip=true
a.search.replace(/&/gi,'?').match(/\?orig_cvip=[^?]+/)||'')
The /&/gi will make sure all ampersands are replaced with question marks.
/&/gi
登录以发布留言。
Fix for eBay and orig_cvip=true
orig_cvip=true
is the querystring parameter required for the "see original listing" link to work on completed auctions.Line 179 should use this:
The
/&/gi
will make sure all ampersands are replaced with question marks.