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'">
|
2024-08-12 18:38:02 -05:00
|
|
|
<title>Sneedium</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-09 04:04:28 -06:00
|
|
|
<div id="navBar">
|
2023-03-09 05:25:24 -06:00
|
|
|
<button id="nwBtn">📄</button>
|
2023-03-09 04:04:28 -06:00
|
|
|
<input id="txtUrl" placeholder="Put the website here" name="url" type="text" onkeypress="clickPress(event)" />
|
|
|
|
<button onclick="go(); return false;" id="goBtn">✅</button>
|
2024-08-13 14:35:15 -05:00
|
|
|
<button onclick="refresh(); return false;" id="refreshBtn">🔄</button>
|
2023-03-09 04:04:28 -06:00
|
|
|
<button onclick="stop(); return false;" id="stopBtn">🛑</button>
|
|
|
|
<button onclick="back(); return false;" id="backBtn">⬅️</button>
|
|
|
|
<button onclick="forward(); return false;" id="forwardBtn">➡️</button>
|
|
|
|
</div>
|
2024-08-13 14:35:15 -05:00
|
|
|
<div id="whProtection">
|
2023-03-09 04:04:28 -06:00
|
|
|
<tab-group new-tab-button="true" sortable="true">
|
|
|
|
<webview id="foo" autosize plugins disablewebsecurity></webview>
|
|
|
|
</tab-group>
|
2024-08-13 14:35:15 -05:00
|
|
|
</div>
|
2023-03-02 17:26:33 -06:00
|
|
|
<script src="node_modules/electron-tabs/dist/electron-tabs.js"></script>
|
2023-03-09 04:04:28 -06:00
|
|
|
<script type="text/javascript" src="./userscript/userscripts.js"></script>
|
2023-03-02 17:26:33 -06:00
|
|
|
<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>
|