Skip to content

Commit

Permalink
Fix vidmoly & add it to README
Browse files Browse the repository at this point in the history
  • Loading branch information
bytedream committed May 20, 2024
1 parent 64cf565 commit e8f273c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 19 deletions.
37 changes: 19 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,25 +70,26 @@ The best way to install the extension are the official browser extension stores:
## 📜 Supported sites

| Site | Supported | Note |
| --------------------------------------------------------------------- | --------- | ------------------------------------------------------------------------------------------------------------ |
|-----------------------------------------------------------------------|-----------|--------------------------------------------------------------------------------------------------------------|
| [doodstream.com](doodstream.com) / [dood.pm](https://dood.pm) | ✔️ | |
| [filemoon.sx](https://filemoon.sx) || |
| [mcloud.to](https://mcloud.to/) || Reverse engineering the site costs too much time ([#5](https://github.com/ByteDream/stream-bypass/issues/5)) |
| [mixdrop.co](https://mixdrop.co) | ✔ ️ | |
| [mp4upload.com](https://mp4upload.com) || |
| [newgrounds.com](https://newgrounds.com) || |
| [streamtape.com](https://streamtape.com) || |
| [streamzz.to](https://streamzz.to) / [streamz.ws](https://streamz.ws) || |
| [upstream.to](https://upstream.to) || |
| [videovard.sx](https://videovard.sx) || Reverse engineering the site costs too much time |
| [vidoza.net](https://vidoza.net) || |
| [vidstream.pro](https://vidstream.pro) || Reverse engineering the site costs too much time ([#5](https://github.com/ByteDream/stream-bypass/issues/5)) |
| [voe.sx](https://voe.sx) || |
| [vupload.com](https://vupload.com) || |
| [kwik.cx](https://kwik.cx) || |
| [dropload.io](https://dropload.io) || |
| [supervideo.tv](https://supervideo.tv) || |
| [goodstream.uno](https://goodstream.uno) || |
| [filemoon.sx](https://filemoon.sx) || |
| [mcloud.to](https://mcloud.to/) || Reverse engineering the site costs too much time ([#5](https://github.com/ByteDream/stream-bypass/issues/5)) |
| [mixdrop.co](https://mixdrop.co) | ✔ ️ | |
| [mp4upload.com](https://mp4upload.com) || |
| [newgrounds.com](https://newgrounds.com) || |
| [streamtape.com](https://streamtape.com) || |
| [streamzz.to](https://streamzz.to) / [streamz.ws](https://streamz.ws) || |
| [upstream.to](https://upstream.to) || |
| [videovard.sx](https://videovard.sx) || Reverse engineering the site costs too much time |
| [vidmoly.me](https://vidmoly.me) || |
| [vidoza.net](https://vidoza.net) || |
| [vidstream.pro](https://vidstream.pro) || Reverse engineering the site costs too much time ([#5](https://github.com/ByteDream/stream-bypass/issues/5)) |
| [voe.sx](https://voe.sx) || |
| [vupload.com](https://vupload.com) || |
| [kwik.cx](https://kwik.cx) || |
| [dropload.io](https://dropload.io) || |
| [supervideo.tv](https://supervideo.tv) || |
| [goodstream.uno](https://goodstream.uno) || |

- ✔️: Everything ok.
- ⚠: Included in the addon but will probably not work. See `Note` in this case, an explanation why will stand there in the most cases.
Expand Down
3 changes: 2 additions & 1 deletion src/lib/match.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,10 @@ export const Vidmoly: Match = {
name: 'Vidmoly',
id: 'vidmoly',
domains: ['vidmoly.me', 'vidmoly.to'],
regex: /(?<=file:").+\.m3u8(?=")/gm,
regex: /(?<=file:").+\.m3u8/gm,

match: async (match: RegExpMatchArray) => {
alert('a');
return match[0];
}
};
Expand Down

0 comments on commit e8f273c

Please sign in to comment.