Skip to content

Commit 59e66ac

Browse files
authored
tw-security-manager.jsx -- whitelist github.io link
1 parent 4d9bb5d commit 59e66ac

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/containers/tw-security-manager.jsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,17 @@ const manuallyTrustExtension = url => {
2222
* @returns {boolean} True if the extension can is trusted
2323
*/
2424
const isTrustedExtensionOrigin = url => (
25-
// Always trust our official extension repostiory.
25+
/* Always trust the official extension repostiories */
2626
url.startsWith('https://extensions.turbowarp.org/') ||
2727
url.startsWith('https://extensions.penguinmod.com/') ||
2828
url.startsWith('https://penguinmod-extensions-gallery.vercel.app/') ||
2929

30-
// Trust other people's galleries. These can be removed in the future, they will just show a pop-up on load if they are.
30+
/* Trust other people's galleries. These can be removed in the future, they will just show a pop-up on load if they are */
3131
url.startsWith('https://sharkpools-extensions.vercel.app/') || // SharkPool
32+
url.startsWith('https://sharkpool-sp.github.io/SharkPools-Extensions/') || // SharkPool (github link)
3233
url.startsWith('https://pen-group.github.io/') || // Pen-Group / ObviousAlexC
3334

34-
// For development.
35+
/* For development */
3536
url.startsWith('http://localhost:8000') ||
3637
url.startsWith('http://localhost:6000') || // Launcher Home
3738
url.startsWith('http://localhost:6001') || // Launcher Extensions

0 commit comments

Comments
 (0)