-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
92 lines (86 loc) · 3.39 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
</head>
<body>
<p>
<strong>Header</strong><br/>
<input type="checkbox" id="remove_readers_link"/>
<label for="remove_readers_link">Remove Readers link</label>
<br/>
<input type="checkbox" id="remove_mentions_link"/>
<label for="remove_mentions_link">Remove Mentions link</label>
<br/>
<input type="checkbox" id="remove_grants_link"/>
<label for="remove_grants_link">Remove Grants link</label>
<br/>
<input type="checkbox" id="remove_premium_link"/>
<label for="remove_premium_link">Remove Premium link</label>
</p>
<p>
<strong>User menu</strong><br/>
<input type="checkbox" id="remove_premium_menu_item"/>
<label for="remove_premium_menu_item">Remove Premium link</label>
<br/>
<input type="checkbox" id="remove_search_alerts_menu_item"/>
<label for="remove_search_alerts_menu_item">Remove Search Alerts link</label>
</p>
<p>
<strong>User profile</strong><br/>
<input type="checkbox" disabled="disabled" checked="checked"/>
<label>Remove advertisement banner with hint to go Premium</label>
<br/>
<input type="checkbox" id="remove_grants_updates"/>
<label for="remove_grants_updates">Remove Grants updates ("We found N grants worth $XXX ...")</label>
<br/>
<input type="checkbox" id="remove_mentions_updates"/>
<label for="remove_mentions_updates">Remove Mentions updates ("Your name is mentioned in ...")</label>
<br/>
<input type="checkbox" id="remove_readers_updates"/>
<label for="remove_readers_updates">Remove Readers updates ("An XYZ researcher read your paper ...")</label>
</p>
<p>
<strong>Analytics</strong><br/>
<input type="checkbox" id="remove_profile_visitors_analytics"/>
<label for="remove_profile_visitors_analytics">Remove Profile Visitors from Analytics</label>
<br/>
<input type="checkbox" id="remove_cv_analytics"/>
<label for="remove_cv_analytics">Remove CV from Analytics</label>
</p>
<p>
<strong>Bulk download</strong><br/>
<input type="checkbox" id="disable_bulk_download_question"/>
<label for="disable_bulk_download_question">Don't ask for bulk download when downloading a paper</label>
<br/>
<input type="checkbox" id="remove_bulk_download_links"/>
<label for="remove_bulk_download_links">Remove bulk download buttons</label>
<br/>
<input type="checkbox" id="remove_full_pdf_package_links"/>
<label for="remove_full_pdf_package_links">Remove "Download full PDF package" buttons</label>
<br/>
<input type="checkbox" id="remove_figures_links"/>
<label for="remove_figures_links">Remove "Download figures" buttons</label>
<br/>
<input type="checkbox" id="remove_translate_links"/>
<label for="remove_translate_links">Remove "Translate PDF" buttons</label>
</p>
<p>
<strong>Article summaries.</strong><br/>
<input type="checkbox" id="disable_key_takeaways"/>
<label for="disable_key_takeaways">Remove Summary tab when reading a paper</label>
<br/>
<input type="checkbox" id="remove_key_takeaways_links"/>
<label for="remove_key_takeaways_links">Remove key takeaways buttons</label>
</p>
<p>
<strong>Popups</strong><br/>
<input type="checkbox" id="remove_rating_modals"/>
<label for="remove_rating_modals">Disable rating requests</label>
<br/>
<input type="checkbox" id="remove_discussion_modals"/>
<label for="remove_discussion_modals">Disable suggestion to start a discussion</label>
</p>
<script src="options.js"></script>
</body>
</html>