Coder Social home page Coder Social logo

fastforwardteam / fastforward Goto Github PK

View Code? Open in Web Editor NEW
3.5K 40.0 293.0 4.4 MB

Don't waste your time with compliance. FastForward automatically skips annoying link shorteners.

Home Page: https://fastforward.team/

License: The Unlicense

PHP 0.97% JavaScript 91.14% HTML 4.94% CSS 2.95%
extension chrome-extension firefox-extension chromium-extension addon hacktoberfest universal-bypass

fastforward's Introduction

Important

FastForward is no longer being actively maintained.
You can fork this project and continue the development if you wish, or contact @undeadjess to take over this repo.
We are still accepting some pull requests!

If you're looking for an alternative, we recommend: bypass-all-shortlinks debloated (userscript) or ads-bypasser (userscript).
If you have an adblocker on your browser, these filter lists can help: yokoffing's filterlists | Actually Legitimate URL Shortener Tool.

The Crowd-Bypass server is still running, you can see the api documentation here, and anyone is free to use it.

Maybe give the devs a hug, they all deserve one:

Thanks for your support over the years!
The FastForward Team <3


Don't waste your time with compliance. FastForward automatically skips annoying link shorteners.

Builds Discord

Get FastForward on Chromium based browsers Get FastForward on Microsoft Edge Get FastForward for Firefox

We need developers to work on bypasses! If you're interested, join our Discord.


Installing the Extension

Please refer to our installation guide.

Supported websites

Refer to our bypassed list.

About

What is FastForward?

FastForward is the successor of Universal Bypass (see below), a browser extension that can bypass annoying link shorteners, so you don't need to waste your time trying to get to the final link. You can see the extension in action on our official website.

What happened to Universal Bypass?

As you may know, Universal Bypass is no longer maintained by its original developer, Sainan, who had worked on it for so long.

Does FastForward have a Discord server?

Yes! If you are interested in assisting the development, need help, or just wanna hang out, you can click here to join our server.

fastforward's People

Contributors

0xc60f avatar adair-ga avatar aliahx avatar davidkra230 avatar devendrapoonia avatar dineshsolanki avatar driedpampas avatar eljaviluki avatar eribito avatar firemasterk avatar ghost avatar kiraio-moe avatar lem6ns avatar lostdusty avatar matadorprobr avatar nfal001 avatar notaproton avatar notexist avatar reashetyrr avatar recehan-slayer avatar robbyajm avatar sainan avatar tech-andgar avatar tetyys avatar timmyrs avatar undeadjess avatar unkn4wn avatar uranite avatar web-flow avatar xerta555 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

fastforward's Issues

request pahe.ph bypass

Linkvertise Downloader

Domain

https://linkvertise.download

Link

Any link on https://linkvertise.com (there are trending links). Make sure to disable the addon, so you will be redirected to linkvertise.download.

Version

0.0.0

What browsers are you seeing the problem on?

Firefox

What OS are you seeing the problem on?

Windows

(Optional) Anything else?

This isn't really needed as linkvertise is already bypassed. But if you're on linkvertise.download, there's no bypass.

Just throwing it out here if anyone needs it. Note: It's really easy to detect and prevent by checking the UA or updating the downloader.

This is roughly how it works:

// Step 1: get the downloader URL
// Step 2: get the final name of the downloader-file
// Step 3: emulate the requests done by the downloader

// example implementation

// the string from the url
const LINK_STUFF = '12345/Name';
const downloaderInfo = await fetch(
  `https://publisher.linkvertise.com/api/v1/redirect/link/${LINK_STUFF}/download-info`,
  {
    method: 'POST',
    body: JSON.stringify({
      // this is the last part in the url,
      // that comes after LINK_STUFF
      key: 'c3R1ZmYgZnJvbSB0aGUgdXJsIC0gYSBrZXk',
    }),
    headers: {
      'Content-Type': 'application/json',
    },
  },
).then(x => x.json());

const downloaderUrl = downloaderInfo.data?.downloadUrl;
// if (!downloaderUrl) return;

handleDownload(downloaderUrl);

/**
 * @param {string} url
 * @returns {Promise<void>}
 */
async function handleDownload(url) {
  // only get the headers
  const response = await fetch(url);
  // Example value: attachment; filename="Channel%20-%20Linkvertise%20Downloader_exS-5as.exe"; ...
  // This might be a zip file with a file like this inside,
  // though it doesn't change the fact that the last part is matched.
  const name = response.headers.get('content-disposition')?.match(/Downloader_([^ .]+)/)?.[1];
  if (!name) return;

  // this is the stuff the downloader does
  // we can't emulate the UA (it's something with WinHttpClient)
  const oResponse = await fetch('https://d17kz3i6hbr7d3.cloudfront.net/o', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    body: JSON.stringify({
      prv: '0.1',
      // still works but might be updated
      plv: '1.34.2.8157',
      l: 'en',
      a: 'Linkvertise',
      i: 'Linkvertise_DLM',
      s: 'Linkvertise',
      u: name,
      o: '10', // os-version
    }),
  }).then(x => x.json());

  if (oResponse.i?.cu) {
    // this would be `safelyNavigate`
    await browser.tabs.update(tabId, {
      url: oResponse.i.cu,
    });
  }
}

Code of Conduct

  • I agree to follow this project's Code of Conduct

New name for the project

Results of vote on Discord.
Universal Bypass Renewed-1
FastFoward-11
U-Bypass-1
X-Bypass-1
(Excluding BS_Zombie)

Winner: FastFoward

image

rebrand.ly

Domain

rebrand.ly

Link

https://rebrand.ly/5rvpevk

Version

0.0.0

What browsers are you seeing the problem on?

Firefox

What OS are you seeing the problem on?

Windows

(Optional) Anything else?

part of https://rebrandly.com/

Code of Conduct

  • I agree to follow this project's Code of Conduct

shorte.st

Domain

http://festyy.com/wM2dCY

Link

http://gestyy.com/w7FxMx

Version

0.0.0

What browsers are you seeing the problem on?

Firefox

What OS are you seeing the problem on?

Windows

(Optional) Anything else?

http://gestyy.com/w7FxMx
http://ceesty.com/weC7bY
http://festyy.com/wM2dCY

Code of Conduct

  • I agree to follow this project's Code of Conduct

grabify.link

Domain

grabify.link

Link

https://grabify.link/VELBWL

Version

0.0.0

What browsers are you seeing the problem on?

Firefox

What OS are you seeing the problem on?

No response

Anything else?

No response

Code of Conduct

  • I agree to follow this project's Code of Conduct

rb.gy

Domain

rb.gy

Link

https://rb.gy/u2gaox

Version

0.0.0

What browsers are you seeing the problem on?

Firefox

What OS are you seeing the problem on?

Windows

(Optional) Anything else?

part of https://free-url-shortener.rb.gy/

Code of Conduct

  • I agree to follow this project's Code of Conduct

https://tny.so

Domain

https://tny.so

Link

https://tny.so/NNj9W

Version

0.0.0

What browsers are you seeing the problem on?

Brave

What OS are you seeing the problem on?

Windows

(Optional) Anything else?

No response

Code of Conduct

  • I agree to follow this project's Code of Conduct

forgytroies.com

letsboost.net

Domain

letsboost.net

Link

https://letsboost.net/E0c6v0

Version

0.0.0

What browsers are you seeing the problem on?

Firefox, Chrome

What OS are you seeing the problem on?

Windows

(Optional) Anything else?

No response

Code of Conduct

  • I agree to follow this project's Code of Conduct

duit.cc

Domain

https://duit.cc/7GjQr

Link

https://duit.cc/a7U

Version

0.0.0

What browsers are you seeing the problem on?

Firefox

What OS are you seeing the problem on?

No response

(Optional) Anything else?

No response

Code of Conduct

  • I agree to follow this project's Code of Conduct

https://mitly.us

Domain

https://mitly.us

Link

https://mitly.us/VryJtV

Version

0.0.0

What browsers are you seeing the problem on?

Brave

What OS are you seeing the problem on?

Windows

(Optional) Anything else?

No response

Code of Conduct

  • I agree to follow this project's Code of Conduct

https://za.uy

Domain

https://za.uy

Link

https://za.uy/hvhfMj

Version

0.0.0

What browsers are you seeing the problem on?

Brave

What OS are you seeing the problem on?

Windows

(Optional) Anything else?

No response

Code of Conduct

  • I agree to follow this project's Code of Conduct

za.gl

Domain

za.gl

Link

https://zee.gl/wj7ojzo

Version

0.0.0

What browsers are you seeing the problem on?

Firefox

What OS are you seeing the problem on?

Windows

(Optional) Anything else?

https://zee.gl/wj7ojzo
https://za.gl/1Wo5q
https://za.uy/NHtP

Code of Conduct

  • I agree to follow this project's Code of Conduct

egao.in

Domain

https://doronime.id/anime/tensei-shitara-slime-datta-ken-2nd-season-part-2/episode-23

Link

https://egao.in/?id=eyJpdiI6IkhOVmpVNlNJa0JtVGJxWDNUMEFaMkE9PSIsInZhbHVlIjoibk5NWHNteUk4QWJheWdoZEZwMmRWdz09IiwibWFjIjoiZTI4NjIwMjMwZWQzNjkxMDdmZWU5OGI5N2Y1OGYzY2NlZGNiMjY3YmNiODQ4YTQxMzBkZTJjYTZhMDliMWFkOCJ9

Version

0.0.0

What browsers are you seeing the problem on?

Firefox

What OS are you seeing the problem on?

Windows

(Optional) Anything else?

No response

Code of Conduct

  • I agree to follow this project's Code of Conduct

andianal.com

httpslink.com

Domain

httpslink.com

Link

https://httpslink.com/2dollars

Version

0.0.0

What browsers are you seeing the problem on?

Firefox

What OS are you seeing the problem on?

Windows

(Optional) Anything else?

No response

Code of Conduct

  • I agree to follow this project's Code of Conduct

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.