wvg/popup.html

62 lines
2.1 KiB
HTML

<html>
<head>
<meta charset="UTF-8">
<title>Widevine L3 Guessor 2024</title>
<style>div{display:none}</style>
</head>
<body>
<div id="noEME" style="display:block">
Widevine content hasn't detected in this page.<br>
Open widevine-protected website and try again!
</div>
<div id="home">
<form id="wvForm">
<label for="guessr">Guessr API</label>
<input type="text" id="guessr" value="https://proposed-marketa-foxrefire.koyeb.app" disabled/>
<input type="radio" value="public" name="apiType" checked>Public
<input type="radio" value="local" name="apiType">Local
<input type="radio" value="custom" name="apiType">Custom
<br>
<label for="pssh">PSSH</label>
<input type="text" id="pssh" disabled/>
<input type="hidden" id="psshIndex" />
<input type="button" id="psshButton" value="Select" /><br>
<label for="license">License URL</label>
<input type="text" id="license" disabled/>
<input type="hidden" id="licenseIndex" />
<input type="button" id="licenseButton" value="Select" /><br>
<label for="challengeScheme">Challenge scheme</label>
<select id="challengeScheme">
<option value="raw">Raw</option>
<option value="b64">Base64</option>
</select><br>
<label for="licenseScheme">License scheme</label>
<select id="licenseScheme">
<option value="raw">Raw</option>
<option value="b64">Base64</option>
</select><br>
<input type="button" id="guess" value="Guess!"><br>
<label for="result" disabled>Result:</label><br>
<textarea id="result" rows="10" cols="50"></textarea>
</form>
</div>
<div id="selectPssh">
<input type="text" id="psshSearch" placeholder="Search">
<ul id="psshList"></ul>
</div>
<div id="selectRequest">
<input type="text" id="requestSearch" placeholder="Search">
<ul id="requestList"></ul>
</div>
</body>
<script src="popup.js"></script>
<script src="popup_drawList.js"></script>
</html>