File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -22,16 +22,17 @@ const manuallyTrustExtension = url => {
22
22
* @returns {boolean } True if the extension can is trusted
23
23
*/
24
24
const isTrustedExtensionOrigin = url => (
25
- // Always trust our official extension repostiory.
25
+ /* Always trust the official extension repostiories */
26
26
url . startsWith ( 'https://extensions.turbowarp.org/' ) ||
27
27
url . startsWith ( 'https://extensions.penguinmod.com/' ) ||
28
28
url . startsWith ( 'https://penguinmod-extensions-gallery.vercel.app/' ) ||
29
29
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 */
31
31
url . startsWith ( 'https://sharkpools-extensions.vercel.app/' ) || // SharkPool
32
+ url . startsWith ( 'https://sharkpool-sp.github.io/SharkPools-Extensions/' ) || // SharkPool (github link)
32
33
url . startsWith ( 'https://pen-group.github.io/' ) || // Pen-Group / ObviousAlexC
33
34
34
- // For development.
35
+ /* For development */
35
36
url . startsWith ( 'http://localhost:8000' ) ||
36
37
url . startsWith ( 'http://localhost:6000' ) || // Launcher Home
37
38
url . startsWith ( 'http://localhost:6001' ) || // Launcher Extensions
You can’t perform that action at this time.
0 commit comments