Cashback Reminder Enhanced

A reminder to check for cashback before completing a purchase online.

  1. // ==UserScript==
  2. // @name Cashback Reminder Enhanced
  3. // @description A reminder to check for cashback before completing a purchase online.
  4. // @namespace Cashback_Reminder_Enhanced
  5. // @version 2020.07.04
  6. // @author Phreeker, dartraiden
  7. // @require https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js
  8. // @match https://www.amazon.co.uk/gp/buy/*
  9. // @match https://orders.ebuyer.com/customer/shopping/*
  10. // @match http*://pay.ebay.*
  11. // @match http*://cart.payments.ebay.*
  12. // @match http*://beru.ru/my/cart
  13. // @match http*://beru.ru/my/orders/payment*
  14. // @match http*://beru.ru/checkout
  15. // @match http*://lk.wildberries.ru/basket
  16. // @match http*://getmart.ru/personal/order/*
  17. // @match http*://getmart.ru/personal/cart/*
  18. // @match http*://www.dx.com/cart
  19. // @match http*://dx.com/cart
  20. // @match http*://www.dx.com/checkout
  21. // @match http*://dx.com/checkout
  22. // @match http*://order.gearbest.com/checkout/*
  23. // @match http*://cart.gearbest.com/cart/*
  24. // @match http*://shoppingcart.yoybuy.com/*
  25. // @match http*://shoppingcart.aliexpress.ru/*
  26. // @match http*://shoppingcart.aliexpress.com/*
  27. // @match http*://www.geekbuying.com/shoppingcart
  28. // @match http*://geekbuying.com/shoppingcart
  29. // @match http*://www.geekbuying.com/Checkout/*
  30. // @match http*://geekbuying.com/Checkout/*
  31. // @match http*://www.citilink.ru/order/*
  32. // @match http*://citilink.ru/order/*
  33. // @match http*://goods.ru/multicart/*
  34. // @match http*://www.fotosklad.ru/personal/cart/*
  35. // @match http*://fotosklad.ru/personal/cart/*
  36. // @match http*://www.fotosklad.ru/personal/order/*
  37. // @match http*://fotosklad.ru/personal/order/*
  38. // @match http*://*.jd.ru/cart/*
  39. // @match http*://*.jd.ru/order/*
  40. // @match http*://cart.jd.com/*
  41. // @match http*://cart.joybuy.com/*
  42. // @match http*://www.banggood.com/checkout*
  43. // @match http*://banggood.com/shopping_cart*
  44. // @match http*://www.banggood.com/checkout*
  45. // @match http*://banggood.com/shopping_cart*
  46. // @match http*://www.techport.ru/cart*
  47. // @match http*://techport.ru/cart*
  48. // @match http*://cart.tomtop.com/*
  49. // @match http*://www.oldi.ru/personal/cart/*
  50. // @match http*://oldi.ru/personal/cart/*
  51. // @match http*://*.lightinthebox.com/*shopping_cart*
  52. // @match http*://lightinthebox.com/*shopping_cart*
  53. // @match http*://*.lightinthebox.com/*checkout*
  54. // @match http*://lightinthebox.com/*checkout*
  55. // @match http*://www.miniinthebox.com/*shopping_cart*
  56. // @match http*://miniinthebox.com/*shopping_cart*
  57. // @match http*://www.miniinthebox.com/*checkout*
  58. // @match http*://miniinthebox.com/*checkout*
  59. // @match http*://www.eldorado.ru/*basket*
  60. // @match http*://eldorado.ru/*basket*
  61. // @match http*://ru-mi.com/checkout/*
  62. // @match http*://www.mvideo.ru/cart
  63. // @match http*://mvideo.ru/cart
  64. // @match http*://www.svyaznoy.ru/cart/*
  65. // @match http*://svyaznoy.ru/cart/*
  66. // @match http*://*.beeline.ru/shop/basket/*
  67. // @match http*://*.tele2.ru/shop/checkout
  68. // @match http*://*.shop.megafon.ru/checkout*
  69. // @match http*://shop.mts.ru/personal/basket
  70. // @grant GM_addStyle
  71. // ==/UserScript==
  72.  
  73. $("body").append ( ' \
  74. <div id="alert"> \
  75. <a class ="alert href="#cashback_alert" title="Click to dismiss">Remember to check for cashback offers!</a> \
  76. </div> \
  77. ' );
  78.  
  79. GM_addStyle ( " \
  80. .alert { \
  81. background-color: #a82a4c; \
  82. color: #f6f6f6 !important; \
  83. display: block; \
  84. font: 16px/40px sans-serif; \
  85. height: 40px; \
  86. position: absolute; \
  87. text-align: center; \
  88. text-decoration: none; \
  89. top: -45px; \
  90. width: 100%; \
  91. animation: alert 1s ease forwards; \
  92. -webkit-box-shadow: 0px 5px 10px -1px rgba(0,0,0,0.6); \
  93. -moz-box-shadow: 0px 5px 10px -1px rgba(0,0,0,0.6); \
  94. box-shadow: 0px 5px 10px -1px rgba(0,0,0,0.6); \
  95. z-index: 99999; \
  96. } \
  97. @keyframes alert { \
  98. 0% { opacity: 0; } \
  99. 50% { opacity: 1; } \
  100. 100% { top: 0; } \
  101. } \
  102. .alert:hover { \
  103. color: #f6f6f6; \
  104. text-decoration:none; \
  105. } \
  106. #alert { \
  107. height: 25px !important; \
  108. } \
  109. " );
  110.  
  111. $('#alert').click(function(e) {
  112. $('#alert').toggle();
  113. });

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址