-
Notifications
You must be signed in to change notification settings - Fork 289
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[PULL REQUEST] Add bypasses + a fix #1272
Conversation
src/helpers/dom.js
Outdated
export function awaitElement (selector, callback) { | ||
return new Promise(resolve => { | ||
const element = document.querySelector(selector) | ||
if (element) { | ||
console.log(`[FastForward] Element found: ${element}`) | ||
callback(element) | ||
resolve(element) | ||
return | ||
} | ||
|
||
const observer = new MutationObserver(() => { | ||
Array.from(document.querySelectorAll(selector)).forEach(el => { | ||
console.log(`[FastForward] Element found: ${el}`) | ||
callback(el) | ||
resolve(el) | ||
observer.disconnect() | ||
}) | ||
}) | ||
|
||
observer.observe(document.documentElement, { | ||
attributes: true, | ||
childList: true, | ||
subtree: true | ||
}) | ||
}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes to the awaitElement function can be a separate PR, this will probably break a lot of other bypasses
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, I'll separate it.
Download the artifacts for this pull request: |
Signed-off-by: Bayu Satiyo <itsyuukunz@gmail.com>
Signed-off-by: Bayu Satiyo <itsyuukunz@gmail.com>
- Skip all timer - Ad block bypass Signed-off-by: Bayu Satiyo <itsyuukunz@gmail.com>
Don't merge this yet, I want to add more bypasses form here. |
Fix FastForwardTeam#1274 Signed-off-by: Bayu Satiyo <itsyuukunz@gmail.com>
add mboost.me bypass also and fix linkvertise use bypass.city MBOOST BYPASS: (function() {
LOOTLINK BYPASS: [Working] loot-link.com bypasser (includes all lootlabs.gg link variations) bypasses loot-link.com quickly and efficiently, saving you time and energy. // @match https://loot-link.com/s?* (function () { |
add filedm bypass soon |
Stop! Don't @ mention me. |
Thanks for the reference. |
@kiraio-moe Are you still working on this? |
I don't have time to work on this ATM. Sorry. I'm really busy in my RL job :( |
Danilo pull |
I'll close this one then, if you got time & still interested, just let us know. |
Improvements: