wvg/popup.html

130 lines
4.0 KiB
HTML
Raw Normal View History

2024-09-23 06:13:04 +00:00
<!-- HTML -->
<html lang="en">
<!-- Heading -->
2024-04-08 22:58:09 +00:00
<head>
<meta charset="UTF-8">
2024-09-23 06:13:04 +00:00
<title>Widevine L3 Decrypter</title>
<link rel="stylesheet" href="style.css">
2024-04-18 20:48:32 +00:00
<script src="pyodide/pyodide.js"></script>
2024-04-08 22:58:09 +00:00
</head>
2024-09-23 06:13:04 +00:00
<!-- Body -->
2024-06-25 01:43:09 +00:00
<body>
2024-09-23 06:13:04 +00:00
<!-- noEME -->
2024-04-24 18:37:31 +00:00
<div id="noEME">
2024-09-23 06:13:04 +00:00
Widevine content hasn't detected in this page.
<br>
Open Widevine protected website and try again!
2024-04-08 22:58:09 +00:00
</div>
2024-09-23 06:13:04 +00:00
<!-- Main -->
<div id="wvHome" >
<!-- Decryption forms -->
2024-04-08 22:58:09 +00:00
<form id="wvForm">
2024-09-23 06:13:04 +00:00
<!-- PSSH line -->
<div id="wvHomePSSHLines">
<label for="pssh">PSSH</label>
<input type="text" id="pssh" disabled/>
<input type="hidden" id="psshIndex" />
<input type="button" id="psshButton" value="Select" />
<br>
</div>
<!-- License URL line -->
<div id="wvHomeLicenseLine">
<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>
</div>
<!-- Scheme line -->
<div id="wvHomeSchemeLine">
<label for="scheme">Challenge scheme</label>
2024-09-27 05:36:08 +00:00
<select id="scheme">
<option value="CommonWV">CommonWV</option>
<option value="Amazon">Amazon</option>
<option value="CanalPlusPL">CanalPlusPL</option>
<option value="Comcast">Comcast Xfinity</option>
<option value="DRMToday">DRMToday</option>
<option value="GlobalTV">GlobalTV</option>
<option value="moTV">moTV</option>
<option value="NosTV">NosTV</option>
<option value="oqee">Oqee</option>
<option value="PolSatBoxGo">PolSatBoxGo</option>
<option value="RedBee">Red Bee Media</option>
<option value="thePlatform">thePlatform</option>
<option value="VdoCipher">VdoCipher</option>
<option value="VUDRM">VUDRM</option>
<option value="Vodafone">Vodafone</option>
<option value="Youku">Youku</option>
<option value="YouTube">YouTube</option>
</select>
2024-09-23 06:13:04 +00:00
<input type="button" id="guess" value="Decrypt">
<br>
</div>
<!-- Result line -->
<div id="wvHomeResultLine">
<label for="result">Result:</label><br>
<textarea id="result" rows="10" cols="50" readonly></textarea>
</div>
2024-04-08 22:58:09 +00:00
</form>
2024-09-23 06:13:04 +00:00
<button id="historyButton">Show History</button>
2024-04-08 22:58:09 +00:00
</div>
2024-09-23 06:13:04 +00:00
<!-- Clearkey -->
<div id="ckHome">
2024-05-07 19:43:06 +00:00
<h3>Clearkey detected</h3>
2024-09-23 06:13:04 +00:00
<label for="ckResult">Result:</label>
<textarea id="ckResult" rows="10" cols="50" readonly></textarea>
2024-05-07 19:43:06 +00:00
</div>
2024-09-23 06:13:04 +00:00
<!-- PSSH Selection -->
<div id="selectPssh">
<label for="psshSearch"></label>
<input type="text" id="psshSearch" placeholder="Search for PSSH">
2024-04-08 22:58:09 +00:00
<ul id="psshList"></ul>
</div>
2024-09-23 06:13:04 +00:00
<!-- License URL Selection -->
<div id="selectRequest">
<label for="requestSearch"></label>
<input type="text" id="requestSearch" placeholder="Search for License request">
2024-04-08 22:58:09 +00:00
<ul id="requestList"></ul>
</div>
2024-09-23 06:13:04 +00:00
<!-- History -->
<div id="history">
2024-04-24 18:37:31 +00:00
<div id="histDisp"></div>
2024-09-23 06:13:04 +00:00
<div id="histButtons">
<button class="text-red-600" id="backHistory">🔙 Back</button>
<button id="saveHistory">💾 Save History</button>
<button id="clearHistory">❌ Clear History</button>
</div>
2024-04-24 18:37:31 +00:00
</div>
2024-09-23 06:13:04 +00:00
<!-- Update notice -->
<div id="updateNoticeExtension">
2024-05-02 17:09:14 +00:00
Version =VER= update available!
2024-09-23 06:13:04 +00:00
<a href="https://github.com/FoxRefire/wvg/archive/=HASH=.zip"> Download</a>
2024-05-02 17:09:14 +00:00
</div>
2024-04-08 22:58:09 +00:00
</body>
2024-09-23 06:13:04 +00:00
<!-- Scripts -->
2024-04-12 21:05:09 +00:00
<script src="popup.js" type="module"></script>
<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-05-02 17:09:14 +00:00
<script src="popup_updateNotice.js"></script>
2024-09-23 06:13:04 +00:00
2024-04-08 22:58:09 +00:00
</html>