forked from hsbakshi/reddit-check
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
61 lines (60 loc) · 2.61 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style_reddit.css">
<script src="jquery.min.js" language="javascript"></script>
<script src="lscache.min.js"></script>
<script src="URI.js"></script>
<script src="js/libraries/moment.min.js"></script>
<script src="js/libraries/moment-precise-range.js"></script>
<script src="js/snoowrap_background_message.js"></script>
<script src="js/reddit_lscache.js"></script>
<script src="js/models/content.js"></script>
<script src="shared.js"></script>
<base target="_blank">
</head>
<body>
<header>
<div class='topbar'>
<img src="/images/thredd_reverse.png" height="18px" class="page-header s6tnjvv-7 dScugc">
<div id="popup-menu"></div>
</div>
</header>
<div id="links"></div>
<div id="create-post"></div>
<div id="timeout">
<div class="header">
<div class="header-content">
<div class="header-text">
<p class="s6tnjvv-14 bPUliZ">
Loading... please wait.
</p>
</div>
</div>
</div>
</div>
<div id="blacklisted" style="display:none;">
Thredd is not running on this page due to your privacy settings.
You can edit these settings by visiting the <a href="options.html" style="color: rgb(0, 121, 211); text-decoration: underline;">Options</a> page.
</div>
<!-- Load React. -->
<!-- Note: when deploying, replace "development.js" with "production.min.js". -->
<script src="js/libraries/react.development.js" crossorigin></script>
<script src="js/libraries/react-dom.development.js" crossorigin></script>
<script src="js/react-components/subreddit.js"></script>
<script src="js/react-components/content_age.js"></script>
<script src="js/react-components/generic_call_to_action.js"></script>
<script src="js/react-components/username.js"></script>
<script src="js/react-components/vote.js"></script>
<script src="js/react-components/content.js"></script>
<script src="js/react-components/dropdown_menu.js"></script>
<script src="js/react-components/open_in_reddit_button.js"></script>
<script src="js/react-components/popup_menu.js"></script>
<script src="js/react-components/remove_button.js"></script>
<script src="js/react-components/save_button.js"></script>
<script src="js/react-components/share_button.js"></script>
<script src="js/react-components/submission_popup.js"></script>
<script src="js/react-components/thredd_result_details.js"></script>
<script src="popup_browserify.js"></script>
</body>
</html>