()
| 5 | |
| 6 | // players |
| 7 | async function voe() { |
| 8 | const response = await fetch('https://voe.sx/e/2sqxhth1ukzh'); |
| 9 | const body = await response.text(); |
| 10 | const loc = body.match(/window\.location\.href = '(.*)'/i); |
| 11 | |
| 12 | const url = new URL(loc[1]); |
| 13 | |
| 14 | addPlayerUrls('voe', [url.hostname + '/e/*']); |
| 15 | } |
| 16 | |
| 17 | async function vidmoly() { |
| 18 | const response = await fetch('https://vidmoly.me/embed-1abcdefghi1j.html', { |
nothing calls this directly
no test coverage detected