Skip to content

Instantly share code, notes, and snippets.

@qnnnnez
Created August 13, 2023 07:05
Show Gist options
  • Save qnnnnez/d43be11e964498e867e56746c55b0905 to your computer and use it in GitHub Desktop.
Save qnnnnez/d43be11e964498e867e56746c55b0905 to your computer and use it in GitHub Desktop.
shrinkme.io bypass
// ==UserScript==
// @name shrinkme.io bypass
// @namespace qnnnnez@live.com
// @version 0.1
// @description skip waitting for shrinkme.io links
// @author qnnnnez
// @match https://shrinkme.io/st*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const targetURL = new URL(location.href).searchParams.get('url');
location.replace(targetURL);
})();
@Ksabrioglu
Copy link

@Ksabrioglu
Copy link

@Ksabrioglu
Copy link

@MEWramim
Copy link

MEWramim commented Mar 6, 2024

@qnnnnez
Copy link
Author

qnnnnez commented Mar 6, 2024

Hi @Ksabrioglu @MEWramim , this gist is actually a userscript, that you can use in browser extensions like Tampermonkey.
And it only works to shrinkme.io, not shrinkme.pro or shrink.me.

@Joebama19
Copy link

@Plokzi
Copy link

Plokzi commented Mar 23, 2024

@Renjiuciha177
Copy link

@Adam-Gamball
Copy link

@epyrov3
Copy link

epyrov3 commented Apr 10, 2024

@FabiIsTheG
Copy link

@Mac5414
Copy link

Mac5414 commented Apr 21, 2024

@Mac5414
Copy link

Mac5414 commented Apr 21, 2024

// ==UserScript==
// @name shrinkme.io bypass
// @namespace qnnnnez@live.com
// @Version 0.1
// @description skip waitting for shrinkme.io links
// @author qnnnnez
// @match https://shrinkme.io/st*
// @grant none
// ==/UserScript==

(function() {
'use strict';
const targetURL = new URL(location.href).searchParams.get('url');
location.replace(targetURL);
})();

@Ghaxzs
Copy link

Ghaxzs commented Jun 17, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment