2024-04-08 22:58:09 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>Widevine L3 Guessor 2024</title>
|
2024-04-24 18:37:31 +00:00
|
|
|
<style>.hidden{display:none}</style>
|
2024-04-18 20:48:32 +00:00
|
|
|
<script src="pyodide/pyodide.js"></script>
|
2024-04-08 22:58:09 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-04-24 18:37:31 +00:00
|
|
|
<div id="noEME">
|
2024-04-08 22:58:09 +00:00
|
|
|
Widevine content hasn't detected in this page.<br>
|
|
|
|
Open widevine-protected website and try again!
|
|
|
|
</div>
|
2024-04-24 18:37:31 +00:00
|
|
|
<div id="home" class="hidden">
|
|
|
|
<button id="historyButton">Show History</button><br><br>
|
2024-04-08 22:58:09 +00:00
|
|
|
<form id="wvForm">
|
|
|
|
<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-29 03:35:30 +00:00
|
|
|
<option value="GlobalTV">GlobalTV</option>
|
2024-05-01 17:27:32 +00:00
|
|
|
<option value="Polsat">Polsat</option>
|
2024-04-26 12:59:34 +00:00
|
|
|
<option value="RedBee">Red Bee Media</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>
|
2024-04-24 18:37:31 +00:00
|
|
|
<div id="selectPssh" class="hidden">
|
2024-04-08 22:58:09 +00:00
|
|
|
<input type="text" id="psshSearch" placeholder="Search">
|
|
|
|
<ul id="psshList"></ul>
|
|
|
|
</div>
|
2024-04-24 18:37:31 +00:00
|
|
|
<div id="selectRequest" class="hidden">
|
2024-04-08 22:58:09 +00:00
|
|
|
<input type="text" id="requestSearch" placeholder="Search">
|
|
|
|
<ul id="requestList"></ul>
|
|
|
|
</div>
|
2024-04-24 18:37:31 +00:00
|
|
|
<div id="history" class="hidden">
|
|
|
|
<button id="backHistory">🔙 Back</button>
|
|
|
|
<button id="saveHistory">💾 Save History</button>
|
|
|
|
<button id="clearHistory">❌ Clear History</button>
|
|
|
|
<div id="histDisp"></div>
|
|
|
|
</div>
|
2024-04-08 22:58:09 +00:00
|
|
|
</body>
|
2024-04-12 21:05:09 +00:00
|
|
|
<script src="popup.js" type="module"></script>
|
2024-04-12 20:15:33 +00:00
|
|
|
<script src="popup_drawList.js"></script>
|
2024-04-24 18:37:31 +00:00
|
|
|
<script src="jsonview.js"></script>
|
|
|
|
<script src="popup_showHistory.js"></script>
|
2024-04-08 22:58:09 +00:00
|
|
|
</html>
|