Skip to content

Commit

Permalink
Remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
hanydd committed Aug 22, 2024
1 parent 7e7fce6 commit 0a0d282
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/thumbnail-utils/thumbnail-selectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ for (const [key, value] of Object.entries(pageTypeSepecialSelector)) {
}

export function getThumbnailContainerElements(pageType: PageType) {
console.log("getThumbnailContainerElements", thumbnailContainerSelectors[pageType]);
return thumbnailContainerSelectors[pageType];
}

Expand All @@ -101,6 +100,5 @@ export function getThumbnailLink(thumbnail: HTMLElement): HTMLElement | null {
}

export function getThumbnailSelectors(pageType: PageType) {
console.log("getThumbnailSelectors", thumbnailElementSelectors[pageType]);
return thumbnailElementSelectors[pageType].join(", ");
}
1 change: 0 additions & 1 deletion src/utils/video.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,6 @@ function detectPageType(): void {
} else if (urlObject.hostname === "live.bilibili.com") {
pageType = PageType.Live;
}
console.log("Page type: ", pageType);
}

let lastMutationListenerCheck = 0;
Expand Down

0 comments on commit 0a0d282

Please sign in to comment.