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 c57cd03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ The best way to install the extension are the official browser extension stores:
| [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) || |
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 c57cd03

Please sign in to comment.