Skip to content

Commit b81e22e

Browse files
committed
πŸ”§Update folder structure and some other small changes
1 parent be01558 commit b81e22e

File tree

9 files changed

+10
-9
lines changed

9 files changed

+10
-9
lines changed

β€Žchrome/manifest.jsonβ€Ž

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"manifest_version": 2,
33
"author": "Sam @yungsamd17",
44
"name": "Volume Control",
5-
"version": "1.1",
5+
"version": "1.1.1",
66
"description": "Adjust volume up to 200%",
77

88
"icons": {
9-
"16": "icons/16.png",
10-
"32": "icons/32.png",
11-
"64": "icons/64.png",
12-
"128": "icons/128.png"
9+
"16": "src/icons/16.png",
10+
"32": "src/icons/32.png",
11+
"64": "src/icons/64.png",
12+
"128": "src/icons/128.png"
1313
},
1414
"permissions": [
1515
"activeTab",
@@ -22,10 +22,10 @@
2222
]
2323
},
2424
"browser_action": {
25-
"default_popup": "popup/index.html"
25+
"default_popup": "popup.html"
2626
},
2727
"options_ui": {
28-
"page": "options/index.html",
28+
"page": "options/options.html",
2929
"browser_style": true,
3030
"chrome_style": true
3131
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<head>
55
<title>Volume Control</title>
6-
<link rel="stylesheet" href="style.css">
6+
<link rel="stylesheet" href="src/style.css">
77
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
88
<script src="script.js"></script>
99
</head>
@@ -17,7 +17,7 @@ <h1>Volume Control</h1>
1717
<div class="controls">
1818
<div class="value">100%</div>
1919
<form id="controls">
20-
<input type="range" class="volume-range slider-progress" min="0" max="200" step="5"><br style="user-select: none;">
20+
<input type="range" class="volume-range slider-progress" min="0" max="200" step="5"><br>
2121
<button id="resetBtn" class="reset-button"><i class="fa-solid fa-rotate-right"></i> Reset tab Volume</button>
2222
</form>
2323
</div>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ body {
1313
background: var(--background);
1414
font-family: Arial, sans-serif;
1515
display: inline-block;
16+
user-select: none;
1617
}
1718
:root {
1819
color-scheme: dark;

0 commit comments

Comments
Β (0)