Bypass Detector

Adds a bypass button for supported URLs

  1. // ==UserScript==
  2. // @name Bypass Detector
  3. // @namespace https://tampermonkey.net/
  4. // @version 1.2
  5. // @icon https://www.google.com/s2/favicons?sz=64&domain=bypass.city
  6. // @description Adds a bypass button for supported URLs
  7. // @author sharmanhall
  8. // @license MIT
  9. // @match *://*.sub2get.com/*
  10. // @match *://*.lootlinks.com/*
  11. // @match *://*.adfoc.us/*
  12. // @match *://*.boost.ink/*
  13. // @match *://*.boostfusedgt.com/*
  14. // @match *://*.leasurepartment.xyz/*
  15. // @match *://*.letsboost.net/*
  16. // @match *://*.mboost.me/*
  17. // @match *://*.rekonise.com/*
  18. // @match *://*.shorte.st/*
  19. // @match *://*.sub2unlock.com/*
  20. // @match *://*.sub2unlock.net/*
  21. // @match *://*.v.gd/*
  22. // @match *://*.dragonslayer.site/*
  23. // @match *://*.tinyurl.com/*
  24. // @match *://*.bit.ly/*
  25. // @match *://*.is.gd/*
  26. // @match *://*.rebrand.ly/*
  27. // @match *://*.empebau.eu/*
  28. // @match *://*.socialwolvez.com/*
  29. // @match *://*.sub1s.com/*
  30. // @match *://*.tinylink.onl/*
  31. // @match *://*.google.com/*
  32. // @match *://*.justpaste.it/*
  33. // @match *://*.subfinal.com/*
  34. // @match *://*.ad-maven.com/*
  35. // @grant none
  36. // ==/UserScript==
  37.  
  38. (function() {
  39. 'use strict';
  40.  
  41. // Create and add bypass button
  42. function addBypassButton() {
  43. const button = document.createElement('button');
  44. button.innerHTML = 'Bypass Link';
  45. button.style.cssText = `
  46. position: fixed;
  47. top: 20px;
  48. right: 20px;
  49. z-index: 10000;
  50. padding: 10px 20px;
  51. background-color: #4CAF50;
  52. color: white;
  53. border: none;
  54. border-radius: 5px;
  55. cursor: pointer;
  56. font-size: 14px;
  57. `;
  58.  
  59. button.addEventListener('mouseover', () => {
  60. button.style.backgroundColor = '#45a049';
  61. });
  62.  
  63. button.addEventListener('mouseout', () => {
  64. button.style.backgroundColor = '#4CAF50';
  65. });
  66.  
  67. button.addEventListener('click', () => {
  68. const encodedUrl = encodeURIComponent(window.location.href);
  69. window.location.href = `https://bypass.city/bypass?bypass=${encodedUrl}`;
  70. });
  71.  
  72. document.body.appendChild(button);
  73. }
  74.  
  75. // Run when page loads
  76. window.addEventListener('load', addBypassButton);
  77. })();