-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
77 lines (74 loc) · 2.45 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<title>LinkedIn Unfollower</title>
<meta charset="utf-8">
<link rel="stylesheet" href="popup.css">
<script src="popup.js" defer></script>
<base target="_blank">
</head>
<body>
<header>LinkedIn Unfollower <img id="options" src="images/options.png" border="0"></header>
<ul id="menu">
<li class="expandable"><a class="expander">Unfollow People You are Following</a><span class="details">
<ul>
<li><a data-command="unfollowAll">All</a></li>
<li><a data-command="unfollowConnections">Connections</a></li>
<li><a data-command="unfollowOutOfNetwork">Out-of-Network</a></li>
<li><a data-command="unfollowCompanies">Companies</a></li>
</ul>
</span></li>
<li><a data-command="unfollowFollowers">Unfollow People Who are Following You</a></li>
<li class="expandable"><a class="expander">Ignore Received Invitations</a><span class="details">
<ul>
<li><a data-command="ignoreInvitations">All Invitations</a></li>
<li><a data-command="ignoreInvitationsWithCommonCompany">Your Company</a></li>
<li><a data-command="ignoreInvitationsWithCommonEducation">Your School</a></li>
<li><a data-command="ignoreInvitationsWithCommonConnection">Having Mutual Connections with You</a></li>
</ul>
</span></li>
<li><a data-command="withdrawSentInvitations">Withdraw Sent Invitations</a></li>
</ul>
<div id="options_content">
<table>
<tr>
<td align="right">
Wait
<br/>
(milliseconds)
</td>
<td>
<input type="text" id="wait" value=""/>
<br/>
Wait x milliseconds after each follow to prevent aggresive following.
</td>
</tr>
<tr>
<td align="right">
Limit
</td>
<td>
<input type="text" id="limit" value=""/>
<br/>
The extension will stop following when the limit (successfully followed profiles) is reached. Leave this field empty to set no limit.
</td>
</tr>
<tr>
<td>
</td>
<td>
<input type="button" id="close_options" value="CLOSE OPTIONS"/>
</td>
</tr>
</table>
</div>
<footer>
<button id="close">Close</button>
<span class="bottom-links">
<a href="https://www.facebook.com/SingaporeTechEntrepreneurs/">STE.sg Page</a>
|
<a href="https://github.com/Singapore-Tech-Entrepreneurs">GitHub Projects</a>
</span>
</footer>
</body>
</html>