-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
134 lines (122 loc) · 4.17 KB
/
popup.html
File metadata and controls
134 lines (122 loc) · 4.17 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tindy</title>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div class="popup-container">
<!-- Header -->
<div class="popup-header">
<div class="popup-logo">🔥</div>
<div class="popup-title">
<h1>Tindy</h1>
<p>Tinder Auto Swiper</p>
</div>
</div>
<!-- Not on Tinder State -->
<div id="notOnTinder" class="popup-state" style="display: none;">
<div class="popup-illustration">
<div class="illustration-icon">🎯</div>
</div>
<h2>Ready to Swipe!</h2>
<p class="popup-description">Open Tinder to start using Tindy</p>
<button id="goToTinder" class="popup-btn popup-btn-primary">
Go to Tinder →
</button>
<div class="popup-info">
<div class="info-item">
<span class="info-icon">⚡</span>
<span>Fast & Efficient</span>
</div>
<div class="info-item">
<span class="info-icon">🥷</span>
<span>Stealth Mode</span>
</div>
<div class="info-item">
<span class="info-icon">📊</span>
<span>Live Statistics</span>
</div>
</div>
</div>
<!-- On Tinder State -->
<div id="onTinder" class="popup-state" style="display: none;">
<!-- Status Badge -->
<div class="status-badge" id="statusBadge">
<span class="status-dot"></span>
<span id="statusText">Inactive</span>
</div>
<!-- Stats Grid -->
<div class="stats-grid">
<div class="stat-card">
<div class="stat-value" id="totalSwipes">0</div>
<div class="stat-label">Total</div>
</div>
<div class="stat-card">
<div class="stat-value" id="rightSwipes">0</div>
<div class="stat-label">👍 Right</div>
</div>
<div class="stat-card">
<div class="stat-value" id="leftSwipes">0</div>
<div class="stat-label">👎 Left</div>
</div>
<div class="stat-card">
<div class="stat-value" id="swipesPerMin">0</div>
<div class="stat-label">Per Min</div>
</div>
</div>
<!-- Main Toggle Button -->
<button id="toggleButton" class="popup-btn popup-btn-primary">
<span id="btnIcon">▶</span>
<span id="buttonText">Start Swiping</span>
</button>
<!-- Quick Settings -->
<div class="quick-settings">
<div class="setting-row">
<label>Mode</label>
<div class="mode-selector">
<button class="mode-btn active" data-mode="right" title="Right Only">👍</button>
<button class="mode-btn" data-mode="mixed" title="Mixed">🎲</button>
<button class="mode-btn" data-mode="left" title="Left Only">👎</button>
</div>
</div>
<div class="setting-row">
<label>Speed: <span id="speedValue">1.0s</span></label>
<input type="range" id="speedSlider" min="500" max="5000" step="100" value="1000" class="slider">
</div>
<div class="setting-row">
<label class="checkbox-label">
<input type="checkbox" id="stealthCheck" checked>
<span>Stealth Mode</span>
</label>
</div>
</div>
<!-- Quick Actions -->
<div class="quick-actions">
<button id="resetBtn" class="action-btn">
<span>🔄</span>
<span>Reset Stats</span>
</button>
<button id="openTinderBtn" class="action-btn">
<span>🔥</span>
<span>Open Tinder</span>
</button>
</div>
<!-- Tip -->
<div class="popup-tip">
<span class="tip-icon">💡</span>
<span>Press <kbd>Space</kbd> on Tinder to toggle swiping</span>
</div>
</div>
<!-- Footer -->
<div class="popup-footer">
<a href="privacy.html" target="_blank">Privacy</a>
<span>•</span>
<span class="version">v1.0.0</span>
</div>
</div>
<script type="module" src="popup/index.js"></script>
</body>
</html>