This repository was archived by the owner on Apr 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpopup.html
More file actions
36 lines (32 loc) · 1.72 KB
/
popup.html
File metadata and controls
36 lines (32 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!doctype html>
<html>
<head>
<!-- META TAGS -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- PUBLIC -->
<title>Poly+ Settings</title>
<!-- RESOURCES -->
<link rel="stylesheet" href="css/polytoria.css" />
</head>
<body style="width: 245px;">
<div class="p-2 pt-0">
<small class="text-muted" style="font-size: 0.7rem;">quick links</small>
<br>
<a href="#" class="btn btn-primary btn-sm w-100 mb-1" id="settings-btn" target="_window">Settings</a>
<a href="https://polytoria.com/my/settings/polyplus#debug" class="btn btn-warning btn-sm w-100 mb-1" target="_window">Debug</a>
<div class="d-flex" style="gap: 5px;">
<a href="https://chromewebstore.google.com/detail/poly+/feafepokhecfmimpepbpccmcnjbcbklg" class="btn btn-dark btn-sm w-100" target="_window"><img src="/images/chrome-icon.svg" alt="Chrome Webstore" width="25" height="25"></a>
<a href="https://addons.mozilla.org/en-US/firefox/addon/polytoriaplus/" class="btn btn-dark btn-sm w-100" target="_window"><img src="/images/firefox-icon.svg" alt="Chrome Webstore" width="25" height="25"></a>
</div>
<hr class="mt-2 mb-3" style="color: #2b2b2b;">
<small class="text-muted" style="font-size: 0.7rem;">extract texture from item</small>
<br>
<div class="input-group">
<input type="text" class="form-control form-control-sm" placeholder="Item ID..">
<button class="btn btn-success btn-sm" id="extract-texture">Extract</button>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>