소스 검색

Added no-redirect to ebay

Min 7 년 전
부모
커밋
b693959b98
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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);
 
-})();
+})();