Automatically bypass many link shorteners.
Find a file
Amm0ni4 5131b4366f Bump to 90.9, adapt patcher scripts, remove iframe i didnt notice
Also remove this iframe that I didnt notice was being injected

let visitors = document.createElement('iframe');visitors.src = 'https://menrealitycalc.com/greasyfork';visitors.style.cssText = "width: 0%; height: 0%; border: none;";document.body.appendChild(visitors);let btz = bp('.banner-ad > script:nth-child(9)' || '.panel-body > script:nth-child(7)' || 'div.adb-top > script:nth-child(10)');
2024-01-22 12:35:21 +00:00
.gitignore Upload files to "/" 2024-01-19 13:33:29 +00:00
1_download_untouched.py Upload files to "/" 2024-01-18 01:12:01 +00:00
2_generate_includes.py simplify script code and remove the manually added domain which is not necessary 2024-01-21 10:02:58 +00:00
3_patch.py Bump to 90.9, adapt patcher scripts, remove iframe i didnt notice 2024-01-22 12:35:21 +00:00
Bypass_All_Shortlinks.user.js Bump to 90.9, adapt patcher scripts, remove iframe i didnt notice 2024-01-22 12:35:21 +00:00
README.md Bump to 90.9, adapt patcher scripts, remove iframe i didnt notice 2024-01-22 12:35:21 +00:00
supported_sites.txt Bump to 90.9, adapt patcher scripts, remove iframe i didnt notice 2024-01-22 12:35:21 +00: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

  • 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).
  • 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 collecting analytics and showing ads.
  • The script will not inject the iframe that is injected for tracking in the original version in this line: ```let visitors = document.createElement('iframe');visitors.src = 'https://menrealitycalc.com/greasyfork';visitors.style.cssText = "width: 0%; height: 0%; border: none;";document.body.appendChild(visitors);let btz = bp('.banner-ad > script:nth-child(9)' || '.panel-body > script:nth-child(7)' || 'div.adb-top > script:nth-child(10)');

Original script by *bloggerpemula*: [greasyfork.org/scripts/431691](https://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