-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
29 lines (28 loc) · 867 Bytes
/
popup.html
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
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles/popup.css" />
<title>Cross-Browser QRCode generator for Javascript</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta
name="viewport"
content="width=device-width,initial-scale=1,user-scalable=no"
/>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/qrcode.js"></script>
</head>
<body>
<p>You need to click this extension when you are on any Localhost page</p>
<div
id="qrcode"
style="width: 100px; height: 100px; margin-top: 15px;"
></div>
<br /><input
id="text"
type="text"
value="www.google.com"
style="width: 80%;"
/>
<script type="text/javascript" src="js/popup.js"></script>
</body>
</html>