Update regex

This commit is contained in:
TPN 2024-08-15 18:37:14 +01:00
parent 0a55847ce0
commit af263c1f70
1 changed files with 5 additions and 5 deletions

View File

@ -15,11 +15,11 @@ export const modifiableResponseHeaders = [
];
const hostsWithCookiesAccess: RegExp[] = [
/^.*\.?ee3\.me$/,
/^.*\.?rips\.cc$/,
/^.*\.?m4ufree\.(?:tv|to|pw)$/,
/^.*\.?goojara\.to$/,
/^.*\.?levidia\.ch$/,
/^(?:.*\.)?ee3\.me$/,
/^(?:.*\.)?rips\.cc$/,
/^(?:.*\.)?m4ufree\.(?:tv|to|pw)$/,
/^(?:.*\.)?goojara\.to$/,
/^(?:.*\.)?levidia\.ch$/,
];
export function canAccessCookies(host: string): boolean {