-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
40 lines (37 loc) · 1.54 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
<!doctype html>
<!--
This page is shown when the extension button is clicked, because the
"browser_action" field in manifest.json contains the "default_popup" key with
value "popup.html".
-->
<html>
<head>
<title>Emoji Mania</title>
<!--Import Google Icon Font-->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" rel="stylesheet">
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<style>
body {
width: 640px;
text-align: center;
}
</style>
</head>
<body>
<b>Emoji Mania</b>
<p>Click on a input field and a blue emoji button will appear. Click this one too if you wish to choose a emoji!</p>
<p>Code & Issue Tracker: <a href="https://github.com/obama/emoji-mania" target="_blank"><i class="material-icons"></i>GitHub</a></p>
<div>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="CKA4Z8SD3K4JU">
<input type="image" src="https://www.paypalobjects.com/en_GB/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal – The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/de_DE/i/scr/pixel.gif" width="1" height="1">
</form>
</div>
<div>
<i class="fa fa-btc"></i> 1PALC9dEDcQmprMaanBXchgZKzuGM9fLH7
</div>
</body>
</html>