[FEATURE]Option to remove auto-dubbed videos.
enhancement
**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 条评论