-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.html
More file actions
53 lines (47 loc) · 1.83 KB
/
Copy pathsettings.html
File metadata and controls
53 lines (47 loc) · 1.83 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title data-i18n="settingsTitle">GhostOnTheSearchBar Settings</title>
<link rel="stylesheet" href="settings.css">
</head>
<body>
<div class="settings-container">
<header class="settings-header">
<h1 data-i18n="settingsTitle">GhostOnTheSearchBar Settings</h1>
</header>
<main class="settings-content">
<section class="settings-section">
<h2 data-i18n="keyShortcutsSettings">Key Shortcuts Settings</h2>
<p class="section-description" data-i18n="keyShortcutsDescription">Configure which search engine or site corresponds to each key.</p>
<div class="shortcuts-grid" id="shortcuts-grid">
<!-- キーショートカット設定がここに動的に生成される -->
</div>
</section>
<section class="settings-section">
<h2 data-i18n="otherSettings">Other Settings</h2>
<div class="setting-item">
<label>
<span data-i18n="wheelScrollSearchEngine">Wheel Scroll Search Engine:</span>
<select id="wheel-scroll-search-engine">
<!-- オプションが動的に生成される -->
</select>
</label>
</div>
<div class="setting-item">
<label>
<input type="checkbox" id="enabled-toggle" checked>
<span data-i18n="enableExtensionCheckbox">Enable extension</span>
</label>
</div>
</section>
</main>
<footer class="settings-footer">
<button id="save-btn" class="save-btn" data-i18n="saveButton">Save</button>
<button id="reset-btn" class="reset-btn" data-i18n="resetButton">Reset</button>
</footer>
</div>
<script src="settings.js"></script>
</body>
</html>