Automatically bypass many link shorteners.
Find a file
Amm0ni4 b0005a9521 removed facebook, added 2 bypasses
-removed facebook by default
-added Bypass for linkspy.cc + clicksfly.com
-added Bypass for mundopolo.net
2024-02-12 02:13:21 +01:00
extra_bypasses removed facebook, added 2 bypasses 2024-02-12 02:13:21 +01:00
.gitignore generate include and match rules separatedly 2024-01-29 18:32:19 +01:00
1_download_untouched.py Upload files to "/" 2024-01-18 01:12:01 +00:00
2_generate_includes.py removed facebook, added 2 bypasses 2024-02-12 02:13:21 +01:00
3_patch.py simplified the script deleting a redudancy 2024-01-30 17:53:34 +01:00
4_add_extra_bypasses.py rename bypasses folder to extra_bypasses 2024-02-07 16:18:23 +01:00
Bypass_All_Shortlinks.meta.js removed facebook, added 2 bypasses 2024-02-12 02:13:21 +01:00
Bypass_All_Shortlinks.user.js removed facebook, added 2 bypasses 2024-02-12 02:13:21 +01:00
README.md removed facebook, added 2 bypasses 2024-02-12 02:13:21 +01:00
supported_sites.txt removed facebook, added 2 bypasses 2024-02-12 02:13:21 +01:00

Debloated fork of bypass-all-shortlinks.

Automatically bypass many link shorteners (supported_sites.txt)

Install

Install with this link

(you need a userscript manager like ViolentMonkey installed in your web browser)

Improvements in this fork

  • No loading the script indiscriminately on every site. The script will be loaded only for the sites that are supported. (the original userscript is loaded in every site you visit which is not necessary).
    • Note: I have removed the following as supported sites:

      • Youtube *://*.youtube.com/shorts/*(@match) (which is used for redirecting shorts)
      • Google:
        • Drive/Docs /^(https?:\/\/)(drive|docs)\.google\.com(\/.*)/(@include) (which is used for Auto-DL from Drive/Docs)
        • redirects /^https?:\/\/(?:www\.)?google\.com\/url.*[?&]q=/(@include) (used for bypassing these redirects)
        • Recaptcha *://*/recaptcha/api2/*(@match) or /^(?:https?:\/\/)?(?:www\.)?(?:google\.com|recaptcha\.net)\/recaptcha\/api2\/.*$/(@include) (used for Auto-Open of captchas in many sites).
      • Twitter *://*.twitter.com/*(@match) Bypass redirects
      • TikTok *://*.tiktok.com/*(@match) Bypass redirects
      • Facebook *://*.facebook.com/*(@match) Bypass redirects
      • VK *://*.vk.com/*(@match) Bypass redirects

      Not including these is to prevent some people from worrying about the script running on sensitive sites. These can be re-enabled manually in your userscript manager, adding the mentioned matching rules in the script settings.

  • No useless added redirects. The script will not redirect to rotator.nurul-huda.sch.id or free4u.nurul-huda.or.id before your destination URL, which are intermediary sites set by the developer for tracking / collecting analytics and showing ads.
  • No injecting unnecesary tracking in every site.
    • The script will not inject that iframe linking to menrealitycalc.com.
    • The script will not inject this weird "adcopy_response". (I don't see a clear purpose for this, since it doesn't seem related in the script to any specific link shortener)
  • Removed non-latin non-unicode characters to avoid potential bug warnings.
  • Added extra bypasses from the extra_bypasses folder.

Original script by bloggerpemula: greasyfork.org/scripts/431691

How I modify the original userscript

Executing these 3 python scripts in order:

  • 1_download_untouched.py
  • 2_generate_includes.py
  • 3_patch.py
  • 4_add_extra_bypasses.py