Skip to content

Instantly share code, notes, and snippets.

@arpruss
Last active July 31, 2019 18:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arpruss/528a2df110d633a378e6bd2df56e82b2 to your computer and use it in GitHub Desktop.
Save arpruss/528a2df110d633a378e6bd2df56e82b2 to your computer and use it in GitHub Desktop.
(function(){
var url = window.location.href;
var m = url.match("/(dp|gp/product)/([^/]+)");
var pid = undefined;
if(m) {
var pid = m[2];
var s = url.match("[^:]*://[^/]+")[0];
window.open(s+"/gp/offer-listing/"+pid);
}})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment