๐Ÿ“ฆ ryankopf / screenshot_extension

๐Ÿ“„ popup.html ยท 27 lines
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<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Extension Popup</title>
    <style>
        body {
            width: 200px;
            padding: 10px;
            font-family: Arial, sans-serif;
        }
        .footer {
            margin-top: 20px;
        }
    </style>
</head>
<body>
    <h3>Screenshot Helper</h3>
    <p>Use <strong>Ctrl+Shift+U</strong> for posts on our stuff.</p>
    <p>Use <strong>Ctrl+Shift+K</strong> for other posts.</p>
    <button id="screenshotButton">Take Screenshot</button>
    <div class="footer">
        <a href="options.html" target="_blank">Settings</a>
    </div>
</body>
</html>