Browse Source

Added no-redirect to ebay

Min 7 years ago
parent
commit
b693959b98
1 changed files with 2 additions and 2 deletions
  1. 2 2
      simplify.user.js

+ 2 - 2
simplify.user.js

@@ -22,7 +22,7 @@
   let redir;
   if(window.location.hostname.indexOf("ebay") !== -1) {
     let s = window.location.pathname.split('/');
-    redir = '/itm/' + s[s.length -1];
+    redir = '/itm/' + s[s.length -1] + '?nordt=true';
   }
 
   else if(window.location.hostname.indexOf("amazon") !== -1) {
@@ -57,4 +57,4 @@
   console.log("Shorting URL:", window.location.href, "->", redir);
   history.pushState(null, '', redir);
 
-})();
+})();