You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.1 KiB
HTML

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>注入 Cookie</title>
<style>
body {
width: 300px;
padding: 15px;
font-family: Arial, sans-serif;
}
h3 {
margin-top: 0;
}
textarea,
button {
width: 100%;
margin-bottom: 10px;
}
button {
padding: 8px;
background: #007acc;
color: white;
border: none;
cursor: pointer;
}
button:hover {
background: #005a99;
}
</style>
</head>
<body>
<h3>🔧 Cookie 注入工具</h3>
<textarea
id="cookie"
placeholder="粘贴 Cookie 字符串token=abc; userId=123"
></textarea>
<button id="paste">📋 粘贴剪贴板</button>
<button id="inject">🚀 注入到当前页面</button>
<script src="popup.js"></script>
</body>
</html>