14 lines
505 B
HTML
14 lines
505 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
|
||
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'">
|
||
|
<title>F-Stopium works!</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Welcome to F-Stopium!</h1>
|
||
|
<p>Put extensions in ./extension. It uses a standard JS array format and uses URLs. Config is located at: ./config.json</p>
|
||
|
</body>
|
||
|
</html>
|