Advertisement
Guest User

ban

a guest
Nov 12th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 1.01 KB | None | 0 0
  1. // ==UserScript==
  2. // @name NEW BANDAI
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description NEW BANDAI
  6. // @author You
  7. // @match http*://p-bandai.com/hk/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Your code here...
  15. //if ($(":contains(預訂即將開始)").length||$(":contains(維護)").length||$(":contains(無效)").length||$(":contains(Error)").length||$(":contains(找不到頁面)").length||$(":contains(Sorry)").length){
  16. if (true){
  17.     if (window.location.href.match("item")){
  18.         window.alert("https://p-bandai.com/hk/item/N2447901001002");
  19.     }
  20.     if (window.location.href.match("cart")){
  21.         window.alert("https://p-bandai.com/hk/cart");
  22.     }
  23.     if (window.location.href.match("login\/checkout")){
  24.         window.alert("https://p-bandai.com/hk/login/checkout");
  25.     } else if (window.location.href.match("login")){
  26.         window.alert("https://p-bandai.com/hk/login");
  27.     } else if (window.location.href.match("checkout")){
  28.         window.alert("https://p-bandai.com/hk/checkout");
  29.     }
  30. }
  31. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement