Update Streamtape.ts

This commit is contained in:
GSTAR 2025-11-08 09:18:37 +01:00 committed by webstreamr
parent ca09cede9d
commit 9fa318cbfa

View file

@ -15,29 +15,30 @@ export class Streamtape extends Extractor {
public supports(ctx: Context, url: URL): boolean {
const supportedDomain = null !== url.host.match(/streamtape/)
|| [
'strtape.cloud',
'streamta.pe',
'strcloud.link',
'strcloud.club',
'strtpe.link',
'scloud.online',
'stape.fun',
'streamadblockplus.com',
'shavetape.cash',
'streamta.site',
'streamadblocker.xyz',
'tapewithadblock.org',
'adblocktape.wiki',
'antiadtape.com',
'tapeblocker.com',
'streamnoads.com',
'tapeadvertisement.com',
'tapeadsenjoyer.com',
'watchadsontape.com',
].includes(url.host);
'strtape.cloud',
'streamta.pe',
'strcloud.link',
'strcloud.club',
'strtpe.link',
'scloud.online',
'stape.fun',
'streamadblockplus.com',
'shavetape.cash',
'streamta.site',
'streamadblocker.xyz',
'tapewithadblock.org',
'adblocktape.wiki',
'antiadtape.com',
'tapeblocker.com',
'streamnoads.com',
'tapeadvertisement.com',
'tapeadsenjoyer.com',
'watchadsontape.com',
].includes(url.host);
return supportedDomain && supportsMediaFlowProxy(ctx);
}
return supportedDomain && supportsMediaFlowProxy(ctx);
public override normalize(url: URL): URL {
return new URL(url.href.replace('/e/', '/v/'));
}
@ -74,4 +75,4 @@ export class Streamtape extends Extractor {
},
];
}
}
}