ITADN

[FEATURE]Option to remove auto-dubbed videos.

#165Opendemented001 创建于 2025-12-08
enhancement
D
demented001commented
**Is your feature request related to a problem? Please describe.** I do not want to be suggested any non-english videos. **Describe the solution you'd like** Add option not only to untranslate, but completely remove autodubbed videos. I chatGPT the code snippet for it and it works. In background.js, right after // Get authors container elements for collaborators videos ` const label = authorsElement?.textContent?.trim(); // --- Hide auto-dubbed videos immediately --- if (label?.includes("Auto-dubbed")) { video.style.display = 'none'; return; // stop processing this video entirely } `
0 条评论