Skip to content

Commit

Permalink
Merge pull request #2659 from Jackerking/master
Browse files Browse the repository at this point in the history
Add Hide Top Progress Bar Function In Appearance Player
  • Loading branch information
ImprovedTube authored Nov 9, 2024
2 parents 1374772 + 8f82e16 commit 9c66a7d
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
10 changes: 10 additions & 0 deletions js&css/extension/www.youtube.com/appearance/player/player.css
Original file line number Diff line number Diff line change
Expand Up @@ -610,3 +610,13 @@ html[data-page-type=video][it-remove-black-bars=true] ytd-watch-flexy[fullscreen
left: 0px!important;
object-fit: cover;
}

/*--------------------------------------------------------------
# HIDE TOP Progress BAR
--------------------------------------------------------------*/

html[data-page-type=video][it-hide-top-loading-bar=true] #progress.style-scope.yt-page-navigation-progress,
html[data-page-type=video][it-hide-top-loading-bar=true] .ytp-load-progress,
html[data-page-type=video][it-hide-top-loading-bar=true] .ytp-loading-bar {
display: none !important;
}
9 changes: 9 additions & 0 deletions js&css/web-accessible/www.youtube.com/appearance.js
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,15 @@ ImprovedTube.commentsSidebar = function () { if (ImprovedTube.storage.comments_s
};
}
}
/*------------------------------------------------------------------------------
HIDE TOP PROGRESS BAR
------------------------------------------------------------------------------*/
ImprovedTube.hideTopProgressBar = function () {
var progressBar = document.querySelector(".top-progress-bar");
if (progressBar) {
progressBar.style.display = "none";
}
};
}
/*------------------------------------------------------------------------------
SIDEBAR
Expand Down
9 changes: 8 additions & 1 deletion menu/skeleton-parts/appearance.js
Original file line number Diff line number Diff line change
Expand Up @@ -405,9 +405,16 @@ extension.skeleton.main.layers.section.appearance.on.click.player = {
component: "switch",
text: "hideScrollForDetails",
tags: "remove,hide"
}
},
hide_top_loading_bar: {
component: "switch",
text: "hideTopLoadingBar",
tags: "remove,hide"
},
}
}


};

/*--------------------------------------------------------------
Expand Down

0 comments on commit 9c66a7d

Please sign in to comment.