Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

Commit

Permalink
Remove id from series url regex
Browse files Browse the repository at this point in the history
  • Loading branch information
bytedream committed Oct 9, 2023
1 parent e3fd634 commit b8d4e19
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/entries/contentScript/website/main.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { main as seriesMain } from '~/entries/contentScript/website/series/main';

const pairs = [
{ entry: seriesMain, pattern: /^https:\/\/www\.crunchyroll\.com\/series\/GG5H5XQX4.*$/ }
];
const pairs = [{ entry: seriesMain, pattern: /^https:\/\/www\.crunchyroll\.com\/series\/.*$/ }];

function checkLocation() {
for (const { entry, pattern } of pairs) {
Expand Down

0 comments on commit b8d4e19

Please sign in to comment.