forked from insin/control-panel-for-twitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
523 lines (523 loc) · 16.4 KB
/
options.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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tweak New Twitter Options</title>
<link rel="stylesheet" href="options.css">
</head>
<body>
<form>
<section class="group">
<label class="checkbox">
Remove algorithmic content
<input type="checkbox" name="reduceAlgorithmicContent">
</label>
<section class="checkbox">
<label>
Use the Following (chronological) timeline by default
<input type="checkbox" name="alwaysUseLatestTweets">
</label>
<section class="checkbox chronological">
<label>
Hide the "For you" (algorithmic) timeline
<input type="checkbox" name="hideForYouTimeline">
</label>
</section>
</section>
<section class="checkbox desktop">
<label>
Hide "What's happening", "Topics to follow" etc. in the sidebar
<input type="checkbox" name="hideSidebarContent">
</label>
<section class="checkbox hidingSidebarContent">
<label>
Show "Relevant people" when viewing a tweet
<input type="checkbox" name="showRelevantPeople">
</label>
</section>
</section>
<section class="checkbox">
<label>
Hide "Who to follow", "Follow some Topics" etc. in the timeline
<input type="checkbox" name="hideWhoToFollowEtc">
</label>
</section>
<section class="checkbox">
<label>
Hide Explore page contents and use it only for searching
<input type="checkbox" name="hideExplorePageContents">
</label>
</section>
<section class="checkbox">
<label>
Hide "Discover more" tweets
<input type="checkbox" name="hideMoreTweets">
</label>
</section>
</section>
<section class="group">
<label>
Tweets shared by other users
</label>
<section class="select">
<label>
Retweets
<select name="retweets">
<option value="ignore">Do nothing</option>
<option value="hide">Hide</option>
<option value="separate">Show in separate tab</option>
</select>
</label>
</section>
<section class="select">
<label>
Quote Tweets
<select name="quoteTweets">
<option value="ignore">Do nothing</option>
<option value="hide">Hide</option>
<option value="separate">Show in separate tab</option>
</select>
</label>
</section>
<section class="checkbox">
<label>
Hide tweets quoting accounts you've blocked or muted
<input type="checkbox" name="hideUnavailableQuoteTweets">
</label>
</section>
<section class="checkbox">
<label>
Mute quoting of specific tweets
<input type="checkbox" name="mutableQuoteTweets">
</label>
<p>Adds a "Mute this conversation" menu item to Quote Tweets</p>
<details class="mutedQuotes" id="mutedQuotesDetails">
<summary><span id="mutedQuotesLabel"></span></summary>
<div id="mutedQuotes"></div>
</details>
</section>
</section>
<section class="group algorithmic">
<label>
Algorithmic tweets in "For you" timeline
</label>
<p>
Note: hiding large numbers of tweets can cause performance issues
</p>
<section class="select">
<label>
Tweets from your communities
<select name="communityTweets">
<option value="ignore">Do nothing</option>
<option value="hide">Hide</option>
</select>
</label>
</section>
<section class="select">
<label>
Tweets from your followees' follows
<select name="followeesFollows">
<option value="ignore">Do nothing</option>
<option value="hide">Hide</option>
</select>
</label>
</section>
<section class="select">
<label>
Liked tweets
<select name="likedTweets">
<option value="ignore">Do nothing</option>
<option value="hide">Hide</option>
</select>
</label>
</section>
<section class="select">
<label>
Replied-to tweets
<select name="repliedToTweets">
<option value="ignore">Do nothing</option>
<option value="hide">Hide</option>
</select>
</label>
</section>
<section class="select">
<label>
Suggested topic tweets
<select name="suggestedTopicTweets">
<option value="ignore">Do nothing</option>
<option value="hide">Hide</option>
</select>
</label>
</section>
</section>
<section class="group">
<label class="checkbox">
UI improvements
<input type="checkbox" name="uiImprovements">
</label>
<section class="checkbox">
<label>
Uninvert Follow / Following buttons
<input type="checkbox" name="uninvertFollowButtons">
</label>
<section class="select uninvertedFollowButtons">
<label>
Button style
<select name="followButtonStyle">
<option value="monochrome">Monochrome</option>
<option value="themed">Themed</option>
</select>
</label>
</section>
</section>
<section class="checkbox desktop">
<label>
Use normal text font style in navigation bar
<input type="checkbox" name="navBaseFontSize">
</label>
</section>
<section class="checkbox">
<label>
Use normal font weight in dropdown menus
<input type="checkbox" name="dropdownMenuFontWeight">
</label>
</section>
<section class="checkbox">
<label>
Fast blocking (skips confirm dialog)
<input type="checkbox" name="fastBlock">
</label>
</section>
<section class="checkbox">
<label>
<span class="desktop">Add "Add muted word" to the "More" menu</span>
<span class="mobile">Add "Add muted word" to the slide-out menu</span>
<input type="checkbox" name="addAddMutedWordMenuItem">
</label>
</section>
<section class="checkbox">
<label>
Hide "Verified" tab in Notifications
<input type="checkbox" name="hideVerifiedNotificationsTab">
</label>
</section>
<section class="checkbox">
<label>
Hide views / analytics links under tweets
<input type="checkbox" name="hideViews">
</label>
</section>
<section class="checkbox mobile">
<label>
Hide "Open app", "Switch to the app" etc. nags
<input type="checkbox" name="hideAppNags">
</label>
</section>
</section>
<section class="group">
<label>
UI tweaks
</label>
<section class="checkbox">
<label>
Don't use Chirp font
<input type="checkbox" name="dontUseChirpFont">
</label>
</section>
<section class="select">
<label>
Twitter Blue verified checkmarks
<select name="twitterBlueChecks">
<option value="ignore">Do nothing</option>
<option value="replace">Replace</option>
<option value="hide">Hide</option>
</select>
</label>
</section>
<section class="checkbox">
<label>
Hide the quoted tweet when viewing Quote Tweets
<input type="checkbox" name="tweakQuoteTweetsPage">
</label>
</section>
<section class="checkbox">
<label>
Hide metrics
<input type="checkbox" name="hideMetrics">
</label>
<section class="group hidingMetrics">
<label class="checkbox">
Hide all
<input type="checkbox" name="hideAllMetrics">
</label>
<section class="checkbox">
<label>
Replies
<input type="checkbox" name="hideReplyMetrics">
</label>
</section>
<section class="checkbox">
<label>
Retweets
<input type="checkbox" name="hideRetweetMetrics">
</label>
</section>
<section class="checkbox">
<label>
Likes
<input type="checkbox" name="hideLikeMetrics">
</label>
</section>
<section class="checkbox">
<label>
Quote tweets
<input type="checkbox" name="hideQuoteTweetMetrics">
</label>
</section>
<section class="checkbox">
<label>
Following / followers
<input type="checkbox" name="hideFollowingMetrics">
</label>
</section>
<section class="checkbox">
<label>
Total tweets
<input type="checkbox" name="hideTotalTweetsMetrics">
</label>
</section>
</section>
</section>
</section>
<section class="group">
<label class="checkbox">
Hide UI items you don't use
<input type="checkbox" name="hideUnusedUiItems">
</label>
<section class="checkbox desktop">
<label>
Account switcher
<input type="checkbox" name="hideAccountSwitcher">
</label>
</section>
<section class="checkbox desktop">
<label>
Messages drawer
<input type="checkbox" name="hideMessagesDrawer">
</label>
</section>
<section class="checkbox desktop">
<label>
Explore (navigation item)
<input type="checkbox" name="hideExploreNav">
</label>
</section>
<section class="checkbox">
<label>
Communities (navigation item)
<input type="checkbox" name="hideCommunitiesNav">
</label>
</section>
<section class="checkbox mobile">
<label>
Messages (navigation item)
<input type="checkbox" name="hideMessagesBottomNavItem">
</label>
</section>
<section class="checkbox desktop">
<label>
Bookmarks (navigation item)
<input type="checkbox" name="hideBookmarksNav">
</label>
</section>
<section class="checkbox desktop">
<label>
Twitter Blue (navigation item)
<input type="checkbox" name="hideTwitterBlueNav">
</label>
</section>
<section class="checkbox">
<label>
Share button under tweets
<input type="checkbox" name="hideShareTweetButton">
</label>
</section>
<section class="checkbox">
<label>
Analytics links under your own tweets
<input type="checkbox" name="hideTweetAnalyticsLinks">
</label>
</section>
</section>
<section class="group">
<label class="checkbox">
<span class="desktop">Hide "More" menu items you don't use</span>
<span class="mobile">Hide slide-out menu items you don't use</span>
<input type="checkbox" name="hideMoreSlideOutMenuItems">
</label>
<section class="checkbox mobile">
<label>
Twitter Blue
<input type="checkbox" name="hideTwitterBlueNav">
</label>
</section>
<section class="checkbox">
<label>
Topics
<input type="checkbox" name="hideTopicsNav">
</label>
</section>
<section class="checkbox mobile">
<label>
Bookmarks
<input type="checkbox" name="hideBookmarksNav">
</label>
</section>
<section class="checkbox">
<label>
Lists
<input type="checkbox" name="hideListsNav">
</label>
</section>
<section class="checkbox">
<label>
Twitter Circle
<input type="checkbox" name="hideTwitterCircleNav">
</label>
</section>
<section class="checkbox">
<label>
Moments
<input type="checkbox" name="hideMomentsNav">
</label>
</section>
<section class="checkbox">
<label>
Newsletters
<input type="checkbox" name="hideNewslettersNav">
</label>
</section>
<section class="checkbox">
<label>
Analytics
<input type="checkbox" name="hideAnalyticsNav">
</label>
</section>
<section class="checkbox">
<label>
Twitter for Professionals
<input type="checkbox" name="hideTwitterForProfessionalsNav">
</label>
</section>
<section class="checkbox">
<label>
Twitter Ads
<input type="checkbox" name="hideTwitterAdsNav">
</label>
</section>
<section class="checkbox">
<label>
Monetization
<input type="checkbox" name="hideMonetizationNav">
</label>
</section>
<section class="checkbox">
<label>
Help Center
<input type="checkbox" name="hideHelpCenterNav">
</label>
</section>
<section class="checkbox desktop">
<label>
Keyboard shortcuts
<input type="checkbox" name="hideKeyboardShortcutsNav">
</label>
</section>
</section>
<section>
<details id="experiments">
<summary>
Experiments
</summary>
<section class="group">
<section class="checkbox">
<label>
Reduced interaction mode
<input type="checkbox" name="reducedInteractionMode">
</label>
<p>
Hide the action bar under tweets – replies are now the only means of interacting
</p>
</section>
<section class="checkbox desktop">
<label>
Full-width timeline content
<input type="checkbox" name="fullWidthContent">
</label>
<p>
Hide the sidebar and let timeline content go full-width
</p>
<section class="checkbox fullWidthContent">
<label>
Full-width media & cards
<input type="checkbox" name="fullWidthMedia">
</label>
</section>
</section>
<section class="select">
<label>
Verified accounts
<select name="verifiedAccounts">
<option value="ignore">Do nothing</option>
<option value="hide">Hide</option>
<option value="highlight">Highlight</option>
</select>
</label>
<p>
Highlight tweets by – or interacting with – verified accounts, or hide them to
simulate the aftermath of the July 2020 Twitter hacks
</p>
</section>
<section>
<label class="checkbox">
Disable the home timeline
<input type="checkbox" name="disableHomeTimeline">
</label>
<p id="showDebugOptions">
Find yourself wasting too much time on Twitter? Try preventing use of the home timeline
<small id="debugCountdown"></small>
</p>
<section class="select disabledHomeTimeline">
<label>
Redirect home timeline to
<select name="disabledHomeTimelineRedirect">
<option value="notifications">Notifications</option>
<option value="messages">Messages</option>
</select>
</label>
</section>
</section>
</section>
</details>
</section>
<section class="group debug">
<label>Debug options</label>
<section class="checkbox">
<label>
Debug mode
<input type="checkbox" name="debug">
</label>
<p>Enables debug logging and displays tweet debug info in the timeline</p>
</section>
<section>
<label>
Export configuration for bug report
<input type="button" value="Export" id="export-config">
</label>
</section>
</section>
</form>
<script src="options.js"></script>
</body>
</html>