2023-03-02 15:42:38 -06:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
|
2023-03-02 17:26:33 -06:00
|
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'">
|
2023-03-02 15:47:28 -06:00
|
|
|
<title>F-Stopium</title>
|
2023-03-02 17:26:33 -06:00
|
|
|
<link href="./styles.css" rel="stylesheet">
|
2023-03-02 15:42:38 -06:00
|
|
|
</head>
|
|
|
|
<body>
|
2023-03-02 17:26:33 -06:00
|
|
|
<input id="txtUrl" style="width:72%;" placeholder="Put the website here" name="url" type="text" onkeypress="clickPress(event)" />
|
|
|
|
<button onclick="go(); return false;">✅</button> <button onclick="back(); return false;">⬅️</button> <button onclick="forward(); return false;">➡️</button>
|
|
|
|
<tab-group new-tab-button="true" sortable="true"><webview id="foo" style="width:100%; height:90vh" disablewebsecurity></webview></tab-group>
|
|
|
|
<script src="node_modules/electron-tabs/dist/electron-tabs.js"></script>
|
|
|
|
<script type="text/javascript" src="./extension/extensionList.js"></script>
|
|
|
|
<script type="text/javascript" src="./config.js"></script>
|
|
|
|
<script type="text/javascript" src="./libbrowz.js"></script>
|
2023-03-02 15:42:38 -06:00
|
|
|
</body>
|
|
|
|
</html>
|