3 Commits

Author SHA1 Message Date
e027c2e09e Version 2.1.4 2022-08-04 17:06:10 +02:00
f9a0656d4d Optimize redirect functionality 2022-08-04 17:05:50 +02:00
382d8b1268 Add dood.wf as domain for doodstream 2022-08-04 17:03:03 +02:00
3 changed files with 7 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "stream-bypass", "name": "stream-bypass",
"version": "2.1.3", "version": "2.1.4",
"description": "Multi-browser addon for multiple streaming providers which redirects directly to the source video", "description": "Multi-browser addon for multiple streaming providers which redirects directly to the source video",
"main": "src/index.ts", "main": "src/index.ts",
"scripts": { "scripts": {

View File

@ -4,20 +4,20 @@ import {Match, matches} from "./match/matches";
async function main() { async function main() {
let match: Match; let match: Match;
let redirect = false;
if ((match = await getMatch(window.location.host)) === undefined) { if ((match = await getMatch(window.location.host)) === undefined) {
let id: string let id: string
if ((id = await storageGet('redirect')) !== undefined) { if ((id = await storageGet('redirect')) !== undefined) {
redirect = true
match = matches.find(m => m.id === id) match = matches.find(m => m.id === id)
await storageDelete('redirect')
} else { } else {
return return
} }
} }
const re = document.body.innerHTML.match(match.regex) const re = document.body.innerHTML.match(match.regex)
if (re === null) { if (re === null) return
return if (redirect) await storageDelete('redirect')
}
const url = await match.match(re) const url = await match.match(re)

View File

@ -23,7 +23,8 @@ class Doodstream implements Match {
domains = [ domains = [
'doodstream.com', 'doodstream.com',
'dood.pm', 'dood.pm',
'dood.ws' 'dood.ws',
'dood.wf'
] ]
replace = true replace = true
regex = new RegExp(/(\/pass_md5\/.*?)'.*(\?token=.*?expiry=)/s) regex = new RegExp(/(\/pass_md5\/.*?)'.*(\?token=.*?expiry=)/s)