diff --git a/.github/SECURITY.md b/.github/SECURITY.md index c8ee568..2e85d3a 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -2,13 +2,9 @@ ## Supported Versions -The movie-web maintainers only support the latest version of movie-web published at https://movie-web.app. -This published version is equivalent to the master branch. - -Support is not provided for any forks or mirrors of movie-web. +The latest version of movie-web is the only version that is supported, as it is the only version that is being actively developed. ## Reporting a Vulnerability -There are two ways you can contact the movie-web maintainers to report a vulnerability: - - Email [security@movie-web.app](mailto:security@movie-web.app) - - Report the vulnerability in the [movie-web Discord server](https://discord.movie-web.app) +You can contact the movie-web maintainers to report a vulnerability: + - Report the vulnerability in the [movie-web Discord server](https://movie-web.github.io/links/discord) diff --git a/src/tabs/PermissionGrant.tsx b/src/tabs/PermissionGrant.tsx index 66305dc..a8c238c 100644 --- a/src/tabs/PermissionGrant.tsx +++ b/src/tabs/PermissionGrant.tsx @@ -8,7 +8,7 @@ export default function PermissionGrant() { const { grantPermission } = usePermission(); const queryParams = new URLSearchParams(window.location.search); - const redirectUrl = queryParams.get('redirectUrl') ?? 'https://movie-web.app'; + const redirectUrl = queryParams.get('redirectUrl') ?? 'https://mw.lonelil.ru'; const domain = makeUrlIntoDomain(redirectUrl); const redirectBack = () => { diff --git a/src/utils/storage.ts b/src/utils/storage.ts index 738df55..27698b1 100644 --- a/src/utils/storage.ts +++ b/src/utils/storage.ts @@ -3,7 +3,14 @@ import { useStorage } from '@plasmohq/storage/hook'; import { makeUrlIntoDomain } from '~utils/domains'; -export const DEFAULT_DOMAIN_WHITELIST = ['movie-web.app', 'dev.movie-web.app']; +export const DEFAULT_DOMAIN_WHITELIST = [ + 'mw.lonelil.ru', + 'watch.qtchaos.de', + 'bmov.vercel.app', + 'stream.thehairy.me', + 'scootydooter.vercel.app', + 'movie-web-me.vercel.app', +]; export const storage = new Storage();