mirror of
https://git.mirrors.martin98.com/https://github.com/cilame/v_jstools
synced 2025-08-02 05:30:41 +08:00
151 lines
4.2 KiB
HTML
151 lines
4.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Document</title>
|
|
|
|
<style type="text/css">
|
|
.switch {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 60px;
|
|
height: 34px;
|
|
transform: scale(.5, .5);
|
|
}
|
|
.switch input {display:none;}
|
|
.slider {
|
|
position: absolute;
|
|
cursor: pointer;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: #ccc;
|
|
-webkit-transition: .05s;
|
|
transition: .05s;
|
|
border-radius: 34px;
|
|
}
|
|
.slider:before {
|
|
position: absolute;
|
|
content: "";
|
|
height: 26px;
|
|
width: 26px;
|
|
left: 4px;
|
|
bottom: 4px;
|
|
background-color: white;
|
|
-webkit-transition: .05s;
|
|
transition: .05s;
|
|
border-radius: 50%;
|
|
}
|
|
input:checked + .slider {
|
|
background-color: #2196F3;
|
|
}
|
|
input:focus + .slider {
|
|
box-shadow: 0 0 1px #2196F3;
|
|
}
|
|
input:checked + .slider:before {
|
|
-webkit-transform: translateX(26px);
|
|
-ms-transform: translateX(26px);
|
|
transform: translateX(26px);
|
|
}
|
|
</style>
|
|
<style>
|
|
.button {
|
|
display: inline-block;
|
|
border-radius: 4px;
|
|
background-color: #f4511e;
|
|
border: none;
|
|
color: #FFFFFF;
|
|
text-align: center;
|
|
font-size: 15px;
|
|
padding: 10px;
|
|
width: 160px;
|
|
transition: all 0.5s;
|
|
cursor: pointer;
|
|
margin: 5px;
|
|
}
|
|
.button span {
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
position: relative;
|
|
transition: 0.5s;
|
|
}
|
|
.button span:after {
|
|
content: '»';
|
|
position: absolute;
|
|
opacity: 0;
|
|
top: 0;
|
|
right: -20px;
|
|
transition: 0.5s;
|
|
}
|
|
.button:hover span {
|
|
padding-right: 25px;
|
|
}
|
|
.button:hover span:after {
|
|
opacity: 1;
|
|
right: 0;
|
|
}
|
|
|
|
.button2 {
|
|
display: inline-block;
|
|
padding: 10px;
|
|
font-size: 15px;
|
|
cursor: pointer;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
outline: none;
|
|
width: 160px;
|
|
transition: all 0.5s;
|
|
margin: 5px;
|
|
color: #fff;
|
|
background-color: #f4511e;
|
|
border: none;
|
|
border-radius: 4px;
|
|
box-shadow: 0 3px #999;
|
|
}
|
|
|
|
.button2:hover {background-color: #b62f04}
|
|
|
|
.button2:active {
|
|
background-color: #3e8e41;
|
|
box-shadow: 0 5px #666;
|
|
transform: translateY(4px);
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
<body style="width: 180px;">
|
|
<label class="switch">
|
|
<input type="checkbox" data-key="config-hook-global"><div class="slider"></div>
|
|
</label>
|
|
<div style="float: right; padding: 10px">是否挂钩总开关</div>
|
|
<label class="switch">
|
|
<input type="checkbox" data-key="config-hook-log-toggle"><div class="slider"></div>
|
|
</label>
|
|
<div style="float: right; padding: 10px">开关输出日志</div>
|
|
<label class="switch">
|
|
<input type="checkbox" data-key="config-myinject_toggle"><div class="slider"></div>
|
|
</label>
|
|
<div style="float: right; padding: 10px">是否注入代码</div>
|
|
<label class="switch">
|
|
<input type="checkbox" data-key="config-replacer_toggle"><div class="slider"></div>
|
|
</label>
|
|
<div style="float: right; padding: 10px">是否替换返回值</div>
|
|
<!-- <label class="switch">
|
|
<input type="checkbox" data-key="config-hook-new-tab"><div class="slider"></div>
|
|
</label>
|
|
<div style="float: right; padding: 10px">配置newTab页</div> -->
|
|
<div>
|
|
<button id="showoptions" class="button" style="vertical-align:middle"><span>打开配置页面</span></button>
|
|
<button id="addlistener" class="button2" style="vertical-align:middle"><span>生成临时环境</span></button>
|
|
<!-- <button id="logtoggle" class="button2" style="vertical-align:middle"><span>开关输出日志</span></button> -->
|
|
<!-- <button id="clone_page" class="button2" style="vertical-align:middle"><span>拷贝当前页面</span></button> -->
|
|
<hr>
|
|
<button id="update_page" class="button2" style="vertical-align:middle"><span>工具更新地址</span></button>
|
|
</div>
|
|
<script src="./tools/sub_logger.js"></script>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html> |