mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
18 lines
416 B
HTML
18 lines
416 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>mitmproxy</title>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<link rel="stylesheet" href="css/mitmproxy.css" type="text/css" />
|
||
|
<script src="js/mitmproxy.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="mitmproxy"></div>
|
||
|
</body>
|
||
|
<script>
|
||
|
$(function(){
|
||
|
mitmproxy.init();
|
||
|
});
|
||
|
</script>
|
||
|
</html>
|