1+ <!doctype html>
2+ < html lang ="en ">
3+ < head >
4+ < title > Processor Monitor Settings</ title >
5+
6+ < meta name ="viewport " content ="width=device-width, height=device-height, initial-scale=1 ">
7+ < link rel ="stylesheet " href ="/common/common.css ">
8+ < link rel ="stylesheet " href ="settings.css ">
9+
10+ < script src ="/polyfills/promisify_chrome.js " defer > </ script >
11+ < script src ="/common/settings.js " defer > </ script >
12+
13+ < script type ="module " src ="/common/theme.mjs "> </ script >
14+ < script nomodule src ="/common/theme.js " defer > </ script >
15+
16+ < script src ="/common/dark.js " defer > </ script >
17+
18+ < script src ="settings.js " defer > </ script >
19+ </ head >
20+ < body >
21+ < h1 > Processor Monitor Settings</ h1 >
22+ < form id ="settingsform ">
23+ < fieldset disabled >
24+ < legend > Main Functionality</ legend >
25+ < label > Numeric Refresh Interval:
26+ < input type ="number " name ="numeric_interval " value ="2 " min ="0.1 " max ="25 " step ="0.1 " placeholder ="0.1 - 25 " required >
27+ seconds</ label >
28+ < br >
29+ < label > Graphical Refresh Interval:
30+ < input type ="number " name ="graphical_interval " value ="1 " min ="0.1 " max ="25 " step ="0.1 " placeholder ="0.1 - 25 " required >
31+ seconds</ label >
32+ < br >
33+ < fieldset >
34+ < legend > Icon Core Utilization Measure:</ legend >
35+ < label > < input type ="radio " name ="primary_measure " value ="highest "> Highest</ label >
36+ < label > < input type ="radio " name ="primary_measure " value ="average " checked > Average</ label >
37+ </ fieldset >
38+ <!--<br>
39+ <label>
40+ <input type="checkbox" name="utilization_notification">Show Current CPU Utilization Notification
41+ </label>-->
42+ </ fieldset >
43+ < fieldset name ="light " disabled >
44+ < legend >
45+ < label > < input type ="radio " name ="theme " value ="light " checked disabled hidden > Light Theme</ label >
46+ </ legend >
47+ < label > Icon Text Color:
48+ < input type ="color " name ="medium_light_icon_text_color " value ="#000000 " list >
49+ </ label >
50+ < br >
51+ < label > Icon Background:
52+ < input type ="color " name ="medium_light_icon_background " value ="#ffffff " list >
53+ </ label >
54+ < br >
55+ < label > Icon Transparency:
56+ < input type ="range " name ="light_icon_transparency " value ="0 " min ="0 " max ="1 " step ="0.01 ">
57+ </ label >
58+ </ fieldset >
59+ < fieldset name ="dark " disabled >
60+ < legend >
61+ < label > < input type ="radio " name ="theme " value ="dark " disabled hidden > Dark Theme</ label >
62+ </ legend >
63+ < label > Icon Text Color:
64+ < input type ="color " name ="medium_dark_icon_text_color " value ="#ffffff " list >
65+ </ label >
66+ < br >
67+ < label > Icon Background:
68+ < input type ="color " name ="medium_dark_icon_background " value ="#000000 " list >
69+ </ label >
70+ < br >
71+ < label > Icon Transparency:
72+ < input type ="range " name ="dark_icon_transparency " value ="0 " min ="0 " max ="1 " step ="0.01 ">
73+ </ label >
74+ </ fieldset >
75+ < fieldset name ="general " disabled >
76+ < legend > General Behavior</ legend >
77+ < label >
78+ < input type ="checkbox " name ="sync_settings " checked > Synchronize Settings Across Devices
79+ </ label >
80+ < br >
81+ < label >
82+ < input type ="checkbox " name ="update_notifications " checked > Show Extension Update Notifications
83+ </ label >
84+ <!--<label><input type="checkbox" name="stats">Collect anonymous performance and usage statistics</label>-->
85+ < br >
86+ < button type ="reset "> Reset Settings to Defaults</ button >
87+ </ fieldset >
88+ </ form >
89+ < nav >
90+ < a href ="/Changelog/Changelog.html "> Changelog</ a >
91+ < a href ="/License.html "> License (GPLv3)</ a >
92+ < a href ="https://danielherr.software/Support "> Support</ a >
93+ </ nav >
94+ < dialog id ="error_dialog ">
95+ < h2 > Processor Monitor Error</ h2 >
96+ < span id ="error_message "> </ span >
97+ < a href ="https://danielherr.software/Support "> Get Support</ a >
98+ < form method ="dialog ">
99+ < button type ="submit "> Close</ button >
100+ </ form >
101+ </ dialog >
102+ </ body >
103+ </ html >
0 commit comments