-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
25 lines (24 loc) · 772 Bytes
/
popup.html
File metadata and controls
25 lines (24 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Getting Started Extension's Popup</title>
<link rel="stylesheet" href="popup.css">
<!--
- JavaScript and HTML must be in separate files: see our Content Security
- Policy documentation[1] for details and explanation.
-
- [1]: http://developer.chrome.com/extensions/contentSecurityPolicy.html
-->
<script src="popup.js"></script>
<script src="base64.js"></script>
</head>
<body>
<div class="content-wrap">
<textarea class="content-field"></textarea>
<p class="content-display"></p>
<input id="decodeBtn" type="button" value="解析">
</div>
<script src="custom.js"></script>
</body>
</html>