mirror of
https://github.com/Shik3i/KoalaSync.git
synced 2026-07-26 12:08:15 +00:00
d6665fe0f5
- Copy Logs button now generates full Markdown debug report (system, tab, connection, video, history, logs)
- Enhanced Dev tab with 20+ video state fields (network, dimensions, error, shadow DOM, platform detection)
- Platform auto-detection (YouTube, Netflix, Twitch, Prime Video, Disney+, Hulu, HBO, Vimeo, Dailymotion)
- 'No video found' diagnostic mode with hints
- Convert mockup from inline <span lang> to {{MOCK_*}} template vars (all 6 languages)
- New TwoPointZero branding: icons (16/32/48/96/128), favicons (PNG 16/32 + apple-touch + 192)
- Fix logo vertical centering via display:contents on picture wrappers
- Increase popup logo to 48px, website nav logo to 64px
- AVIF quality 70->80, speed 6->4, remove min 3KB threshold
- Add 32+96 icon sizes to manifest
- Remove amazon. from tab blacklist (unblocks Prime Video)
- Update TESTED_SERVICES.md: mark Prime Video as non-functional
- Update CONTRIBUTING.md with Copy Debug Report workflow
187 lines
3.6 KiB
JavaScript
187 lines
3.6 KiB
JavaScript
/**
|
|
* blacklist.js
|
|
*
|
|
* ⚠️ WARNING: This is the SINGLE SOURCE OF TRUTH.
|
|
* If you edit this file, you MUST run: node scripts/build-extension.js
|
|
* to propagate changes to the extension and relay server.
|
|
*
|
|
* Domains to be filtered out from the tab selection dropdown to reduce "noise".
|
|
* These are typically sites that won't contain shareable video content.
|
|
*/
|
|
export const BLACKLIST_DOMAINS = [
|
|
// Search Engines & Portals
|
|
'google.com',
|
|
'bing.com',
|
|
'duckduckgo.com',
|
|
'yahoo.com',
|
|
'msn.com',
|
|
'baidu.com',
|
|
'yandex.ru',
|
|
'ecosia.org',
|
|
'startpage.com',
|
|
'search.brave.com',
|
|
'qwant.com',
|
|
'you.com',
|
|
'perplexity.ai',
|
|
'ask.com',
|
|
'search.yahoo.com',
|
|
'swisscows.ch',
|
|
'mojeek.com',
|
|
|
|
// Mail Providers
|
|
'mail.google.com',
|
|
'gmail.com',
|
|
'outlook.live.com',
|
|
'outlook.office.com',
|
|
'mail.yahoo.com',
|
|
'gmx.net',
|
|
'gmx.de',
|
|
'gmx.com',
|
|
'web.de',
|
|
'protonmail.com',
|
|
'proton.me',
|
|
't-online.de',
|
|
'posteo.de',
|
|
'mailbox.org',
|
|
'mail.de',
|
|
'zoho.com',
|
|
'fastmail.com',
|
|
'tutanota.com',
|
|
'mail.ru',
|
|
|
|
// Cloud Storage & Documents
|
|
'docs.google.com',
|
|
'sheets.google.com',
|
|
'slides.google.com',
|
|
'drive.google.com',
|
|
'dropbox.com',
|
|
'onedrive.live.com',
|
|
'icloud.com',
|
|
|
|
// Messengers
|
|
'web.whatsapp.com',
|
|
'web.telegram.org',
|
|
'discord.com',
|
|
'element.io',
|
|
'app.slack.com',
|
|
|
|
// Productivity & Project Management
|
|
'atlassian.net',
|
|
'jira',
|
|
'trello.com',
|
|
'notion.so',
|
|
'monday.com',
|
|
'asana.com',
|
|
'github.com',
|
|
'gitlab.com',
|
|
'bitbucket.org',
|
|
'stackoverflow.com',
|
|
|
|
// Social Media & Forums
|
|
'linkedin.com',
|
|
'twitter.com',
|
|
'x.com',
|
|
'facebook.com',
|
|
'instagram.com',
|
|
'reddit.com',
|
|
'quora.com',
|
|
'threads.net',
|
|
'bsky.app',
|
|
'mastodon.social',
|
|
'vk.com',
|
|
'weibo.com',
|
|
'9gag.com',
|
|
'imgur.com',
|
|
|
|
// E-Commerce
|
|
'ebay.com',
|
|
'aliexpress.com',
|
|
'etsy.com',
|
|
|
|
// Media Information & Reviews
|
|
'rottentomatoes.com',
|
|
'imdb.com',
|
|
'thetvdb.com',
|
|
'themoviedb.org',
|
|
'letterboxd.com',
|
|
'metacritic.com',
|
|
'myanimelist.net',
|
|
|
|
// Development & Utilities
|
|
'koalastuff.net',
|
|
'auth.koalastuff.net',
|
|
'blog.koalastuff.net',
|
|
'clicker.koalastuff.net',
|
|
'cookies.koalastuff.net',
|
|
'multibox.koalastuff.net',
|
|
'snippets.koalastuff.net',
|
|
'status.koalastuff.net',
|
|
'sync.koalastuff.net',
|
|
'timer.koalastuff.net',
|
|
'localhost',
|
|
'zoom.us',
|
|
'teams.microsoft.com',
|
|
'meet.google.com',
|
|
'chrome.google.com',
|
|
|
|
// Music Streaming
|
|
'music.youtube.com',
|
|
'open.spotify.com',
|
|
'soundcloud.com',
|
|
'deezer.com',
|
|
'tidal.com',
|
|
|
|
// Knowledge & Blogs
|
|
'wikipedia.org',
|
|
'medium.com',
|
|
'dev.to',
|
|
'news.ycombinator.com',
|
|
|
|
// Design & Creative Tools
|
|
'figma.com',
|
|
'canva.com',
|
|
'miro.com',
|
|
|
|
// Online IDEs & Hosting
|
|
'vscode.dev',
|
|
'replit.com',
|
|
'codesandbox.io',
|
|
'vercel.com',
|
|
'netlify.com',
|
|
|
|
// Social & Image Sharing
|
|
'pinterest.com',
|
|
'tumblr.com',
|
|
|
|
// Language Learning
|
|
'duolingo.com',
|
|
'hellotalk.com',
|
|
|
|
// Google Utilities
|
|
'calendar.google.com',
|
|
'keep.google.com',
|
|
|
|
// Finance & Payments
|
|
'paypal.com',
|
|
'stripe.com',
|
|
|
|
// Games & Idle Sites
|
|
'milkywayidle.com',
|
|
'melvoridle.com',
|
|
'cookieclicker.',
|
|
'clickerheroes.com',
|
|
'kongregate.com',
|
|
'armorgames.com',
|
|
'crazygames.com',
|
|
'poki.com',
|
|
'newgrounds.com',
|
|
'krunker.io',
|
|
'slither.io',
|
|
'agar.io',
|
|
'diep.io',
|
|
'geoguessr.com',
|
|
'chess.com',
|
|
'lichess.org',
|
|
'skribbl.io'
|
|
];
|