mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-18 05:28:32 +03:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e3da6c8643 | ||
|
|
136f5e7d61 | ||
|
|
16f24978ff |
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "__MSG_fullName__",
|
"name": "__MSG_fullName__",
|
||||||
"short_name": "SponsorBlock",
|
"short_name": "SponsorBlock",
|
||||||
"version": "5.10.4",
|
"version": "5.10.5",
|
||||||
"default_locale": "en",
|
"default_locale": "en",
|
||||||
"description": "__MSG_Description__",
|
"description": "__MSG_Description__",
|
||||||
"homepage_url": "https://sponsor.ajay.app",
|
"homepage_url": "https://sponsor.ajay.app",
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ div:hover > #previewbar.sbNotInvidious {
|
|||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ytp-tooltip.sponsorCategoryTooltipVisible {
|
.ytp-tooltip.sponsorCategoryTooltipVisible:not(.sponsorTooltipHasYTChapters) {
|
||||||
transform: translateY(-1em) !important;
|
transform: translateY(-1em) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -516,7 +516,7 @@ function handleMobileControlsMutations(): void {
|
|||||||
function getPreviewBarAttachElement(): HTMLElement | null {
|
function getPreviewBarAttachElement(): HTMLElement | null {
|
||||||
const progressElementOptions = [{
|
const progressElementOptions = [{
|
||||||
// For newer mobile YouTube (Sept 2024)
|
// For newer mobile YouTube (Sept 2024)
|
||||||
selector: ".ytChapteredProgressBarHost, .YtProgressBarLineHost, .YtChapteredProgressBarHost",
|
selector: ".ytChapteredProgressBarHost, .ytProgressBarLineHost, .YtProgressBarLineHost, .YtChapteredProgressBarHost",
|
||||||
isVisibleCheck: true
|
isVisibleCheck: true
|
||||||
}, {
|
}, {
|
||||||
// For newer mobile YouTube (May 2024)
|
// For newer mobile YouTube (May 2024)
|
||||||
|
|||||||
@@ -152,6 +152,10 @@ class PreviewBar {
|
|||||||
// Hide original tooltip if some chapter has been filtered out
|
// Hide original tooltip if some chapter has been filtered out
|
||||||
originalTooltip.style.display = "none";
|
originalTooltip.style.display = "none";
|
||||||
noYoutubeChapters = true;
|
noYoutubeChapters = true;
|
||||||
|
|
||||||
|
originalTooltip.classList.add("sponsorTooltipHasYTChapters");
|
||||||
|
} else {
|
||||||
|
originalTooltip.classList.remove("sponsorTooltipHasYTChapters");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mainSegment === null && secondarySegment === null) {
|
if (mainSegment === null && secondarySegment === null) {
|
||||||
@@ -163,6 +167,7 @@ class PreviewBar {
|
|||||||
this.categoryTooltipContainer.classList.add(TOOLTIP_VISIBLE_CLASS);
|
this.categoryTooltipContainer.classList.add(TOOLTIP_VISIBLE_CLASS);
|
||||||
if (mainSegment !== null && secondarySegment !== null) {
|
if (mainSegment !== null && secondarySegment !== null) {
|
||||||
this.categoryTooltipContainer.classList.add("sponsorTwoTooltips");
|
this.categoryTooltipContainer.classList.add("sponsorTwoTooltips");
|
||||||
|
originalTooltip.classList.remove("sponsorTooltipHasYTChapters");
|
||||||
} else {
|
} else {
|
||||||
this.categoryTooltipContainer.classList.remove("sponsorTwoTooltips");
|
this.categoryTooltipContainer.classList.remove("sponsorTwoTooltips");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user