-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
options.html
698 lines (690 loc) · 26.2 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
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link rel="stylesheet" href="options.css">
</head>
<body>
<form>
<section class="group labelled">
<label id="homeTimelineOptionsLabel">
Home timeline
</label>
<section class="checkbox">
<label>
<span id="alwaysUseLatestTweetsLabel">Use the "Following" (chronological) timeline by default</span>
<input type="checkbox" name="alwaysUseLatestTweets">
<span class="toggle"></span>
</label>
<section class="checkbox chronological">
<label>
<span id="hideForYouTimelineLabel">Hide the "For you" (algorithmic) timeline</span>
<input type="checkbox" name="hideForYouTimeline">
<span class="toggle"></span>
</label>
</section>
</section>
<section class="select">
<label>
<span id="retweetsLabel">Retweets</span>
<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>
<span id="quoteTweetsLabel">Quote Tweets</span>
<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>
<span id="mutableQuoteTweetsLabel">Enable muting of Quote Tweets</span>
<input type="checkbox" name="mutableQuoteTweets">
<span class="toggle"></span>
</label>
<details id="hideQuotesFromDetails">
<summary><span id="hideQuotesFromLabel"></span></summary>
<div id="hideQuotesFrom"></div>
</details>
<details id="mutedQuotesDetails">
<summary><span id="mutedQuotesLabel"></span></summary>
<div id="mutedQuotes"></div>
</details>
</section>
<section class="checkbox">
<label>
<span id="hideSeeNewTweetsLabel">Hide "See new Tweets"</span>
<input type="checkbox" name="hideSeeNewTweets">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="hideWhoToFollowEtcLabel">Hide "Who to follow", "Follow some Topics" etc. in the timeline</span>
<input type="checkbox" name="hideWhoToFollowEtc">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="hideInlinePrompts">Hide inline prompts in the timeline</span>
<input type="checkbox" name="hideInlinePrompts">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox desktop">
<label>
<span id="fullWidthContentLabel">Full-width timeline content</span>
<input type="checkbox" name="fullWidthContent">
<span class="toggle"></span>
</label>
<p id="fullWidthContentInfo">
Hide the sidebar and let timeline content go full-width
</p>
<section class="checkbox fullWidthContent">
<label>
<span id="fullWidthMediaLabel">Full-width media & cards</span>
<input type="checkbox" name="fullWidthMedia">
<span class="toggle"></span>
</label>
</section>
</section>
</section>
<section class="group labelled">
<label id="uiImprovementsOptionsLabel">UI improvements</label>
<section class="checkbox">
<label>
<span id="addAddMutedWordMenuItemLabel_desktop" class="desktop">Add "Add muted word" to the "More" menu</span>
<span id="addAddMutedWordMenuItemLabel_mobile" class="mobile">Add "Add muted word" to the slide-out menu</span>
<input type="checkbox" name="addAddMutedWordMenuItem">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="fastBlockLabel">Fast blocking (skips confirm dialog)</span>
<input type="checkbox" name="fastBlock">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="hideUnavailableQuoteTweetsLabel">Hide quotes and replies to blocked and muted accounts</span>
<input type="checkbox" name="hideUnavailableQuoteTweets">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="hideProfileRetweetsLabel">Hide Retweets in user profiles</span>
<input type="checkbox" name="hideProfileRetweets">
<span class="toggle"></span>
</label>
</section>
<section class="select">
<label>
<span id="listRetweetsLabel">Retweets in Lists</span>
<select name="listRetweets">
<option value="ignore">Do nothing</option>
<option value="hide">Hide</option>
</select>
</label>
</section>
<section class="checkbox">
<label>
<span id="defaultToLatestSearchLabel">Default to "Latest" tab in Search</span>
<input type="checkbox" name="defaultToLatestSearch">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="tweakQuoteTweetsPageLabel">Hide the quoted tweet when viewing Quote Tweets</span>
<input type="checkbox" name="tweakQuoteTweetsPage">
<span class="toggle"></span>
</label>
</section>
</section>
<section class="group labelled">
<label id="xFixesLabel">X fixes</label>
<section class="checkbox">
<label>
<span id="replaceLogoLabel">Replace X branding changes</span>
<input type="checkbox" name="replaceLogo">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="hideViewsLabel">Hide Views under tweets</span>
<input type="checkbox" name="hideViews">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="hideVerifiedNotificationsTabLabel">Hide "Verified" Notifications and Followers tabs</span>
<input type="checkbox" name="hideVerifiedNotificationsTab">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="restoreLinkHeadlinesLabel">Restore headlines under external links</span>
<input type="checkbox" name="restoreLinkHeadlines">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="restoreQuoteTweetsLinkLabel">Restore Quote Tweets link under Tweets</span>
<input type="checkbox" name="restoreQuoteTweetsLink">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="restoreOtherInteractionLinksLabel">Restore other links under Tweets</span>
<input type="checkbox" name="restoreOtherInteractionLinks">
<span class="toggle"></span>
</label>
</section>
<section class="select">
<label>
<span id="sortRepliesLabel">Default for Sort replies</span>
<select name="sortReplies">
<option value="relevant">Most relevent</option>
<option value="recent">Most recent</option>
<option value="liked">Most liked</option>
</select>
</label>
</section>
<section class="select">
<label>
<span id="twitterBlueChecksLabel">Premium blue checks</span>
<select name="twitterBlueChecks">
<option value="ignore">Do nothing</option>
<option id="twitterBlueChecksOption_replace" value="replace">Replace with Twitter Blue logo</option>
<option value="hide">Hide</option>
</select>
</label>
</section>
<section class="checkbox">
<label>
<span id="hideTwitterBlueRepliesLabel">Hide Premium blue check replies</span>
<input type="checkbox" name="hideTwitterBlueReplies">
<span class="toggle"></span>
</label>
<section class="checkbox hidingTwitterBlueReplies">
<label>
<span id="hideBlueReplyFollowingLabel">Hide people I follow</span>
<input type="checkbox" name="hideBlueReplyFollowing">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox hidingTwitterBlueReplies">
<label>
<span id="hideBlueReplyFollowedByLabel">Hide people who follow me</span>
<input type="checkbox" name="hideBlueReplyFollowedBy">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox group hidingTwitterBlueReplies">
<label>
<span id="showBlueReplyFollowersCountLabel">Show people with over 1 million followers</span>
<input type="checkbox" name="showBlueReplyFollowersCount">
<span class="toggle"></span>
</label>
<section class="select showingBlueReplyFollowersCount">
<label>
<span id="showBlueReplyFollowersCountAmountLabel">Number of followers</span>
<select name="showBlueReplyFollowersCountAmount">
<option value="1000">1K</option>
<option value="10000">10K</option>
<option value="100000">100K</option>
<option value="1000000">1 million</option>
</select>
</label>
</section>
</section>
<section class="checkbox hidingTwitterBlueReplies">
<label>
<span id="showBlueReplyVerifiedAccountsLabel">Show "verified" accounts</span>
<input type="checkbox" name="showBlueReplyVerifiedAccounts">
<span class="toggle"></span>
</label>
</section>
</section>
<section class="checkbox">
<label>
<span id="hideTwitterBlueUpsellsLabel">Hide Premium upsells</span>
<input type="checkbox" name="hideTwitterBlueUpsells">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="hideGrokLabel">Hide Grok</span>
<input type="checkbox" name="hideGrokNav">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="hideJobsLabel">Hide Jobs</span>
<input type="checkbox" name="hideJobsNav">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="hideSubscriptionsLabel">Hide Subscriptions</span>
<input type="checkbox" name="hideSubscriptions">
<span class="toggle"></span>
</label>
</section>
</section>
<section class="group labelled">
<label id="uiTweaksOptionsLabel">
UI tweaks
</label>
<section class="checkbox">
<label>
<span id="dontUseChirpFontLabel">Don't use the Chirp font</span>
<input type="checkbox" name="dontUseChirpFont">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="disableTweetTextFormattingLabel">Disable bold and italic text in tweets</span>
<input type="checkbox" name="disableTweetTextFormatting">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox desktop">
<label>
<span id="navBaseFontSizeLabel">Use normal text font style in navigation bar</span>
<input type="checkbox" name="navBaseFontSize">
<span class="toggle"></span>
</label>
</section>
<section class="select desktop">
<label>
<span id="navDensityLabel">Navigation density</span>
<select name="navDensity">
<option value="default">Default</option>
<option value="comfortable">Comfortable</option>
<option value="compact">Compact</option>
</select>
</label>
</section>
<section class="checkbox">
<label>
<span id="dropdownMenuFontWeightLabel">Use normal font weight in dropdown menus</span>
<input type="checkbox" name="dropdownMenuFontWeight">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="uninvertFollowButtonsLabel">Uninvert Follow / Following buttons</span>
<input type="checkbox" name="uninvertFollowButtons">
<span class="toggle"></span>
</label>
<section class="select uninvertedFollowButtons">
<label>
<span id="followButtonStyleLabel">Button style</span>
<select name="followButtonStyle">
<option value="monochrome" id="followButtonStyleOption_monochrome">Monochrome</option>
<option value="themed" id="followButtonStyleOption_themed">Themed</option>
</select>
</label>
</section>
</section>
<section class="checkbox">
<label>
<span id="unblurSensitiveContentLabel">Unblur sensitive content</span>
<input type="checkbox" name="unblurSensitiveContent">
<span class="toggle"></span>
</label>
</section>
</section>
<section class="group labelled">
<label id="reduceAlgorithmicContentOptionsLabel">Remove algorithmic content</label>
<section class="checkbox desktop">
<label>
<span id="hideSidebarContentLabel">Hide "What's happening", "You might like" etc. in the sidebar</span>
<input type="checkbox" name="hideSidebarContent">
<span class="toggle"></span>
</label>
<section class="checkbox hidingSidebarContent">
<label>
<span id="showRelevantPeopleLabel">Show "Relevant people" when viewing a tweet</span>
<input type="checkbox" name="showRelevantPeople">
<span class="toggle"></span>
</label>
</section>
</section>
<section class="checkbox">
<label>
<span id="hideExplorePageContentsLabel">Hide Explore page contents and use it only for searching</span>
<input type="checkbox" name="hideExplorePageContents">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="hideMoreTweetsLabel">Hide "Discover more" tweets</span>
<input type="checkbox" name="hideMoreTweets">
<span class="toggle"></span>
</label>
</section>
</section>
<section class="group labelled">
<label id="reduceEngagementOptionsLabel">
Reduce "engagement"
</label>
<section class="checkbox">
<label>
<span id="hideMetricsLabel">Hide metrics</span>
<input type="checkbox" name="hideMetrics">
<span class="toggle"></span>
</label>
<section class="group hidingMetrics">
<label class="checkbox">
<span id="hideAllMetricsLabel">Hide all</span>
<input type="checkbox" name="hideAllMetrics">
<span class="toggle"></span>
</label>
<section class="checkbox">
<label>
<span id="hideReplyMetricsLabel">Replies</span>
<input type="checkbox" name="hideReplyMetrics">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="hideRetweetMetricsLabel">Retweets</span>
<input type="checkbox" name="hideRetweetMetrics">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="hideQuoteTweetMetricsLabel">Quote tweets</span>
<input type="checkbox" name="hideQuoteTweetMetrics">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="hideLikeMetricsLabel">Likes</span>
<input type="checkbox" name="hideLikeMetrics">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="hideBookmarkMetricsLabel">Bookmarks</span>
<input type="checkbox" name="hideBookmarkMetrics">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="hideFollowingMetricsLabel">Following / followers</span>
<input type="checkbox" name="hideFollowingMetrics">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="hideTotalTweetsMetricsLabel">Total tweets</span>
<input type="checkbox" name="hideTotalTweetsMetrics">
<span class="toggle"></span>
</label>
</section>
</section>
</section>
<section class="checkbox">
<label>
<span id="reducedInteractionModeLabel">Reduced interaction mode</span>
<input type="checkbox" name="reducedInteractionMode">
<span class="toggle"></span>
</label>
<p id="reducedInteractionModeInfo">
Hide the action bar under tweets – replies are now the only means of interacting
</p>
</section>
<section class="checkbox">
<label>
<span id="disableHomeTimelineLabel">Disable the home timeline</span>
<input type="checkbox" name="disableHomeTimeline">
<span class="toggle"></span>
</label>
<p id="disableHomeTimelineInfo">
<span>Find yourself wasting too much time on Twitter? Try preventing use of the home timeline</span>
</p>
<section class="select disabledHomeTimeline">
<label>
<span id="disabledHomeTimelineRedirectLabel">Redirect home timeline to</span>
<select name="disabledHomeTimelineRedirect">
<option value="notifications" id="disabledHomeTimelineRedirectOption_notifications">Notifications</option>
<option value="messages" id="disabledHomeTimelineRedirectOption_messages">Messages</option>
</select>
</label>
</section>
</section>
</section>
<section class="group">
<label class="checkbox">
<span id="hideUnusedUiItemsOptionsLabel">Hide UI items you don't use</span>
<input type="checkbox" name="hideUnusedUiItems">
<span class="toggle"></span>
</label>
<section class="checkbox">
<label>
<span id="hideBookmarkButtonLabel">Bookmark button under tweets</span>
<input type="checkbox" name="hideBookmarkButton">
<span class="toggle"></span>
</label>
<section class="checkbox hidingBookmarkButton">
<label>
<span id="showBookmarkButtonUnderFocusedTweetsLabel">Show under focused tweets</span>
<input type="checkbox" name="showBookmarkButtonUnderFocusedTweets">
<span class="toggle"></span>
</label>
</section>
</section>
<section class="checkbox">
<label>
<span id="hideShareTweetButtonLabel">Share button under tweets</span>
<input type="checkbox" name="hideShareTweetButton">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox">
<label>
<span id="hideTweetAnalyticsLinksLabel">Analytics links under your own tweets</span>
<input type="checkbox" name="hideTweetAnalyticsLinks">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox desktop">
<label>
<span id="hideTimelineTweetBoxLabel">Tweet box in timeline</span>
<input type="checkbox" name="hideTimelineTweetBox">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox desktop">
<label>
<span id="hideAccountSwitcherLabel">Account switcher</span>
<input type="checkbox" name="hideAccountSwitcher">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox desktop">
<label>
<span id="hideMessagesDrawerLabel">Messages drawer</span>
<input type="checkbox" name="hideMessagesDrawer">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox desktop">
<label>
<span id="hideExploreNavLabel">Explore</span>
<input type="checkbox" name="hideExploreNav">
<span class="toggle"></span>
</label>
<section class="checkbox hidingExploreNav">
<label>
<span id="hideExploreNavWithSidebarLabel">Show when sidebar is hidden</span>
<input type="checkbox" name="hideExploreNavWithSidebar">
<span class="toggle"></span>
</label>
</section>
</section>
<section class="checkbox desktop">
<label>
<span class="hideListsNavLabel">Lists</span>
<input type="checkbox" name="hideListsNav">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox desktop">
<label>
<span class="hideBookmarksNavLabel">Bookmarks</span>
<input type="checkbox" name="hideBookmarksNav">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox desktop">
<label>
<span class="hideCommunitiesNavLabel">Communities</span>
<input type="checkbox" name="hideCommunitiesNav">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox mobile">
<label>
<span id="hideMessagesBottomNavItemLabel">Messages</span>
<input type="checkbox" name="hideMessagesBottomNavItem">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox mobile">
<label>
<span class="hideCommunitiesNavLabel">Communities</span>
<input type="checkbox" name="hideCommunitiesNav">
<span class="toggle"></span>
</label>
</section>
</section>
<section class="group">
<label class="checkbox">
<span id="hideMoreSlideOutMenuItemsOptionsLabel_desktop" class="desktop">Hide "More" menu items you don't use</span>
<span id="hideMoreSlideOutMenuItemsOptionsLabel_mobile" class="mobile">Hide slide-out menu items you don't use</span>
<input type="checkbox" name="hideMoreSlideOutMenuItems">
<span class="toggle"></span>
</label>
<section class="checkbox mobile">
<label>
<span class="hideListsNavLabel">Lists</span>
<input type="checkbox" name="hideListsNav">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox mobile">
<label>
<span class="hideBookmarksNavLabel">Bookmarks</span>
<input type="checkbox" name="hideBookmarksNav">
<span class="toggle"></span>
</label>
</section>
<!--section class="checkbox mobile">
<label>
<span class="hideCommunitiesNavLabel">Communities</span>
<input type="checkbox" name="hideCommunitiesNav">
<span class="toggle"></span>
</label>
</section-->
<section class="checkbox">
<label>
<span id="hideMonetizationNavLabel">Monetization</span>
<input type="checkbox" name="hideMonetizationNav">
<span class="toggle"></span>
</label>
</section>
<!--section class="checkbox desktop">
<label>
<span class="hideProNavLabel">Pro</span>
<input type="checkbox" name="hideProNav">
<span class="toggle"></span>
</label>
</section-->
<section class="checkbox">
<label>
<span id="hideAdsNavLabel">Ads</span>
<input type="checkbox" name="hideAdsNav">
<span class="toggle"></span>
</label>
</section>
<section class="checkbox desktop">
<label>
<span id="hideSpacesNavLabel">Create your Space</span>
<input type="checkbox" name="hideSpacesNav">
<span class="toggle"></span>
</label>
</section>
</section>
<section>
<details id="experiments">
<summary id="experimentsOptionsLabel">
Experiments
</summary>
<section class="group">
<section class="checkbox">
<p id="showDebugOptions">
<span id="experimentalNote">
There are no experiments in this version
</span>
<small id="debugCountdown"></small>
</p>
</section>
</section>
</details>
</section>
<section class="group labelled debug">
<label id="debugOptionsLabel">Debug options</label>
<section class="checkbox">
<label>
<span id="debugLabel">Debug mode</span>
<input type="checkbox" name="debug">
<span class="toggle"></span>
</label>
<p id="debugInfo">Enables debug logging and displays tweet debug info in the timeline</p>
</section>
<section>
<label class="button">
<span id="exportConfigLabel">Export configuration for bug report</span>
<input type="button" value="Export" id="export-config">
</label>
</section>
</section>
</form>
<script src="options.js"></script>
</body>
</html>