Bypass Safelinkreview

if you do not like Safelinkreview link or button does not work, this is the right script

  1. // ==UserScript==
  2. // @name Bypass Safelinkreview
  3. // @namespace https://ecyber.biz
  4. // @version 0.1
  5. // @description if you do not like Safelinkreview link or button does not work, this is the right script
  6. // @include http://safelinkreview.com/*
  7. // @include http://decrypt.safelinkconverter.com/*
  8. // @copyright siakbary
  9. // @require http://code.jquery.com/jquery-latest.js
  10. // ==/UserScript==
  11. if (window.location.origin === "http://decrypt.safelinkconverter.com") {
  12. var idkbu = $('.redirect_url').find('a').attr('href');
  13. location.replace(idkbu);
  14. console.info(idkbu);
  15. } else {
  16. var idku = window.location.search.split('id=')[1];
  17. location.replace("http://decrypt.safelinkconverter.com/index.php?id="+idku);
  18. console.info(idku);
  19. }