-
Notifications
You must be signed in to change notification settings - Fork 290
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'FastForwardTeam:main' into testing
- Loading branch information
Showing
36 changed files
with
757 additions
and
251 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name: Close inactive issues | ||
on: | ||
schedule: | ||
- cron: "30 1 * * *" | ||
- cron: "0 0 14,28 * *" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import BypassDefinition from './BypassDefinition.js'; | ||
|
||
export default class Androidtop extends BypassDefinition { | ||
constructor() { | ||
super(); | ||
// custom bypass required bases can be set here | ||
} | ||
|
||
execute() { | ||
// If the variable downloadTimer is defined, then use clearInterval to stop the timer. | ||
document.querySelector('.counterhide').setAttribute('style', 'opacity: 0; visibility: hidden; height: 0px;'); | ||
document.querySelector('.download-result').setAttribute('style', 'opacity: 1; visibility: visible;'); | ||
} | ||
} | ||
|
||
export const matches = ['androidtop.net']; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import BypassDefinition from './BypassDefinition.js'; | ||
|
||
export default class Apkhubs extends BypassDefinition { | ||
constructor() { | ||
super(); | ||
// custom bypass required bases can be set here | ||
} | ||
|
||
execute() { | ||
this.helpers.ifElement("a#downloadbtn", a => { | ||
this.helpers.safelyNavigate(a.href) | ||
}) | ||
} | ||
} | ||
|
||
export const matches = ['apkhubs.com']; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import BypassDefinition from './BypassDefinition.js'; | ||
|
||
export default class Curseforge extends BypassDefinition { | ||
constructor() { | ||
super(); | ||
// custom bypass required bases can be set here | ||
} | ||
|
||
execute() { | ||
window.setInterval = f => setInterval(f, 100) | ||
} | ||
} | ||
|
||
export const matches = ['curseforge.com']; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import BypassDefinition from './BypassDefinition.js'; | ||
|
||
export default class Favpng extends BypassDefinition { | ||
constructor() { | ||
super(); | ||
this.ensure_dom = true; | ||
} | ||
|
||
execute() { | ||
const scripts = document.getElementsByTagName('script'); | ||
for (let i = 0; i < scripts.length; i++) { | ||
let script = scripts[i]; | ||
if (script.textContent.includes('https://download.favpng.com/api_download.php?')) { | ||
let startIndex = script.textContent.indexOf('https://download.favpng.com/api_download.php?'); | ||
let endIndex = script.textContent.indexOf('"', startIndex); | ||
this.helpers.safelyNavigate(script.textContent.substring(startIndex, endIndex)); | ||
} | ||
} | ||
} | ||
} | ||
|
||
export const matches = ['favpng.com']; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import BypassDefinition from './BypassDefinition.js'; | ||
|
||
export default class Filefactory extends BypassDefinition { | ||
constructor() { | ||
super(); | ||
// custom bypass required bases can be set here | ||
} | ||
|
||
execute() { | ||
this.helpers.insertInfoBox("Unfortunately, the download server will ensure that you have waited before allowing you to download the file.") | ||
} | ||
} | ||
|
||
export const matches = ['https://filefactory.com', 'https://file-upload.com', 'https://asdfiles.com', 'https://mega4up.com', ' https://up-load.io', 'https://cosmobox.org', 'https://devdrive.cloud']; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import BypassDefinition from './BypassDefinition.js'; | ||
|
||
export default class Filepuma extends BypassDefinition { | ||
constructor() { | ||
super(); | ||
// custom bypass required bases can be set here | ||
} | ||
|
||
execute() { | ||
// Find the last script in the page | ||
let scripts = document.getElementsByTagName('script'); | ||
let lastScript = scripts[scripts.length - 1]; | ||
// Get the script's source | ||
let scriptSrc = lastScript.innerHTML; | ||
// Find the first location.href in the script and get the value of location.href | ||
let url = scriptSrc.split('location.href = "')[1].split('"')[0]; | ||
alert(url) | ||
|
||
} | ||
} | ||
|
||
export const matches = ['filepuma.com']; |
Oops, something went wrong.