wvg/popup.html

56 lines
1.9 KiB
HTML
Raw Normal View History

2024-04-08 22:58:09 +00:00
<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>
2024-04-12 20:12:23 +00:00
<input type="text" id="guessr" value="https://proposed-marketa-foxrefire.koyeb.app" disabled/>
<input type="radio" value="public" name="apiType" checked>Public
2024-04-12 20:02:21 +00:00
<input type="radio" value="local" name="apiType">Local
<input type="radio" value="custom" name="apiType">Custom
<br>
2024-04-08 22:58:09 +00:00
<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>
2024-04-12 21:05:09 +00:00
<label for="scheme">Challenge scheme</label>
2024-04-12 21:20:33 +00:00
<select id="scheme">
2024-04-12 21:05:09 +00:00
<option value="CommonWV">CommonWV</option>
<option value="DRMToday">DRMToday</option>
2024-04-08 22:58:09 +00:00
</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>
2024-04-12 21:05:09 +00:00
<script src="popup.js" type="module"></script>
<script src="popup_drawList.js"></script>
2024-04-08 22:58:09 +00:00
</html>