forked from PositiveSumNet/SocialAssistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
61 lines (61 loc) · 3.73 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 style="width:375px; height:600px;" lang="en">
<head>
<title>Whosum Social Assistant</title>
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" >
<link href="css/app.css" rel="stylesheet" >
<link href="lib/bootstrap-icons/bootstrap-icons.css" rel="stylesheet" >
</head>
<body class="p-4">
<h1 style="font-family:Ink Free">Whosum Social Assistant</h1>
<div id="termsSection">
<h5>Terms of Use</h5>
<p>I agree that all human beings are born free and equal in dignity and rights, and that these rights and freedoms must not be infringed on the basis of race, color, national origin, religion, sex (including pregnancy, sexual orientation, gender identity or transgender status), age (over 40), disability, genetic information, marital status, political affiliation, and status as a parent.</p>
<p>I agree that every citizen of a democracy should be able to cast their vote and have their legal vote counted - without intimidation, violence, or threats of violence.</p>
<p>I agree that it is imperative to safeguard the health of our environment and preserve a livable Earth for our children and grand-children.</p>
<p>I understand and agree that THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN MSGTYPE OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p>
<button class="btn btn-primary" id="btnAgreeToTerms">I Agree</button>
</div>
<div id="appSection" style="display:none;">
<div id="twitterSection">
<h5 id="recordTwitterBanner">Cache Twitter Follow List</h5>
<div id="runnableTwitterPageMsg" style="display:none;">
<div class="d-grid gap-2">
<button class="btn btn-primary ifRecording hideIfRecording" id="btnRecTwitterManualScroll">As I scroll manually</button>
<button class="btn btn-primary ifRecording hideIfRecording" id="btnRecTwitterAutoScroll">With auto-scroll</button>
<button class="btn btn-primary ifRecording hideIfNotRecording" id="btnRecTwitterStop">Stop recording</button>
</div>
</div>
<div id="invalidTwitterPageMsg" style="display:none;">
<p style="color:#ff0000">Navigate to the 'followers' or 'following' list of a Twitter account to continue</p>
<div class="d-grid gap-2">
<a class="btn btn-primary" href="https://twitter.com/positivesumnet/following" target="_blank">View an example page</a>
</div>
</div>
</div>
<br>
<div id="reviewDbSection">
<h5>Review Social Database</h5>
<div>
<div class="d-grid gap-2">
<button class="btn btn-primary" id="btnReviewDb">Review Database</button>
</div>
</div>
</div>
</div>
<br>
<div>
<a href="https://whosum.com/privacy" target="_blank">Privacy</a> |
<a href="https://whosum.com/terms" target="_blank">Terms</a> |
<a href="https://github.com/positivesumnet/socialassistant" target="_blank">Code</a>
</div>
<br>
<div class="text-center"><img src="/images/possum800.png" style="width:255px; height:170px;" alt="possum-mascot"></div>
<script src="lib/shared/constants.js"></script>
<script src="lib/shared/pagetypes.js"></script>
<script src="lib/shared/settingslib.js"></script>
<script src="lib/shared/strlib.js"></script>
<script src="lib/content/urlparsing.js"></script>
<script src="popup.js"></script>
</body>
</html>