diff --git a/src/popup.ts b/src/popup.ts index 1fc1acc6..338ecfcd 100644 --- a/src/popup.ts +++ b/src/popup.ts @@ -708,8 +708,9 @@ async function runThePopup(messageListener?: MessageListener): Promise { && [SponsorHideType.Visible, SponsorHideType.Hidden].includes(downloadedTimes[i].hidden)) { voteButtonsContainer.appendChild(hideButton); } - voteButtonsContainer.appendChild(skipButton); - + if (downloadedTimes[i].actionType !== ActionType.Full) { + voteButtonsContainer.appendChild(skipButton); + } // Will contain request status const voteStatusContainer = document.createElement("div");