build links for shorts videos

This commit is contained in:
simon 2023-01-12 22:54:18 +07:00
parent 8b71d15036
commit 55ef05cc2a
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ function getThubnailContainers() {
function buildVideoButton(thumbContainer) {
let thumbLink = thumbContainer?.href;
if (!thumbLink) return;
if (thumbLink.includes('list=') || thumbLink.includes('/shorts/')) return;
if (thumbLink.includes('list=')) return;
let ggp = thumbContainer?.parentElement?.parentElement;
if (ggp?.id !== 'dismissible') return;