fix: made hide with controls site-specific accidentally

This commit is contained in:
2026-03-28 19:08:14 -04:00
parent cd5e4bee9f
commit a51801e7c3
4 changed files with 1 additions and 8 deletions
-1
View File
@@ -1603,7 +1603,6 @@ function applySiteRuleOverrides() {
// Override general settings with site-specific overrides
const siteSettings = [
"startHidden",
"hideWithYouTubeControls",
"controllerLocation",
"rememberSpeed",
"forceLastSavedSpeed",
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "Speeder",
"short_name": "Speeder",
"version": "3.5.0",
"version": "4.0.0",
"manifest_version": 2,
"description": "Speed up, slow down, advance and rewind HTML5 audio/video with shortcuts (New and improved version of \"Video Speed Controller\")",
"homepage_url": "https://github.com/SoPat712/speeder",
-4
View File
@@ -219,10 +219,6 @@
<label>Hide controller by default:</label>
<input type="checkbox" class="site-startHidden" />
</div>
<div class="site-rule-option">
<label>Hide with controls (YouTube):</label>
<input type="checkbox" class="site-hideWithYouTubeControls" />
</div>
<div class="site-rule-option">
<label>Default controller location:</label>
<select class="site-controllerLocation">
-2
View File
@@ -611,7 +611,6 @@ function save_options() {
// Handle other site settings
const siteSettings = [
{ key: "startHidden", type: "checkbox" },
{ key: "hideWithYouTubeControls", type: "checkbox" },
{ key: "controllerLocation", type: "select" },
{ key: "rememberSpeed", type: "checkbox" },
{ key: "forceLastSavedSpeed", type: "checkbox" },
@@ -833,7 +832,6 @@ function createSiteRule(rule) {
const settings = [
{ key: "startHidden", type: "checkbox" },
{ key: "hideWithYouTubeControls", type: "checkbox" },
{ key: "controllerLocation", type: "select" },
{ key: "rememberSpeed", type: "checkbox" },
{ key: "forceLastSavedSpeed", type: "checkbox" },