diff --git a/scripts/generate-sitemap.cjs b/scripts/generate-sitemap.cjs
new file mode 100644
index 0000000..4668906
--- /dev/null
+++ b/scripts/generate-sitemap.cjs
@@ -0,0 +1,109 @@
+const fs = require('fs');
+const path = require('path');
+
+const sitemapPath = path.join(__dirname, '../website/sitemap.xml');
+
+const languages = [
+ { code: 'en', prefix: '', hreflang: 'en' },
+ { code: 'de', prefix: 'de/', hreflang: 'de' },
+ { code: 'fr', prefix: 'fr/', hreflang: 'fr' },
+ { code: 'es', prefix: 'es/', hreflang: 'es' },
+ { code: 'pt-BR', prefix: 'pt-BR/', hreflang: 'pt-br' },
+ { code: 'ru', prefix: 'ru/', hreflang: 'ru' },
+ { code: 'it', prefix: 'it/', hreflang: 'it' },
+ { code: 'pl', prefix: 'pl/', hreflang: 'pl' },
+ { code: 'tr', prefix: 'tr/', hreflang: 'tr' },
+ { code: 'nl', prefix: 'nl/', hreflang: 'nl' },
+ { code: 'ja', prefix: 'ja/', hreflang: 'ja' },
+ { code: 'ko', prefix: 'ko/', hreflang: 'ko' },
+ { code: 'zh', prefix: 'zh/', hreflang: 'zh' },
+ { code: 'uk', prefix: 'uk/', hreflang: 'uk' },
+ { code: 'pt', prefix: 'pt/', hreflang: 'pt' }
+];
+
+const today = new Date().toISOString().split('T')[0];
+
+let xml = `
+`;
+
+// 1. Static Legal pages
+// Imprint
+xml += `
+
+ https://sync.koalastuff.net/imprint
+ ${today}
+ monthly
+ 0.3
+ `;
+xml += `
+
+ https://sync.koalastuff.net/privacy
+ ${today}
+ monthly
+ 0.3
+ `;
+xml += `
+
+ https://sync.koalastuff.net/de/impressum
+ ${today}
+ monthly
+ 0.3
+ `;
+xml += `
+
+ https://sync.koalastuff.net/de/datenschutz
+ ${today}
+ monthly
+ 0.3
+ `;
+
+// Helper function to build localized urls for a relative path
+function addPage(relativePath, changefreq, priority) {
+ for (const lang of languages) {
+ const loc = `https://sync.koalastuff.net/${lang.prefix}${relativePath}`;
+ xml += `
+
+ ${loc}
+ ${today}
+ ${changefreq}
+ ${priority}`;
+ for (const alt of languages) {
+ const altHref = `https://sync.koalastuff.net/${alt.prefix}${relativePath}`;
+ xml += `
+ `;
+ }
+ // Add x-default
+ const defaultHref = `https://sync.koalastuff.net/${relativePath}`;
+ xml += `
+
+ `;
+ }
+}
+
+// 2. Landing Pages
+// For landing page, relative path is ''
+addPage('', 'weekly', '1.0');
+
+// 3. Alternatives Hub
+addPage('alternatives', 'weekly', '0.7');
+
+// 4. Alternatives Sub-pages
+const subpages = [
+ 'alternatives/teleparty',
+ 'alternatives/screen-sharing',
+ 'alternatives/watch2gether',
+ 'alternatives/scener',
+ 'alternatives/kosmi',
+ 'alternatives/twoseven'
+];
+for (const sub of subpages) {
+ addPage(sub, 'weekly', '0.7');
+}
+
+xml += `
+
+`;
+
+fs.writeFileSync(sitemapPath, xml.trim() + '\n', 'utf8');
+console.log('Successfully generated sitemap.xml!');
diff --git a/website/llms.txt b/website/llms.txt
index 1b8754c..c1a8112 100644
--- a/website/llms.txt
+++ b/website/llms.txt
@@ -26,7 +26,13 @@ KoalaSync is a privacy-first peer-to-peer video synchronization tool. It uses We
## Optional
-- [Alternatives hub](https://sync.koalastuff.net/alternatives/): Comparison with Teleparty, Scener, other sync tools
+- [Alternatives hub](https://sync.koalastuff.net/alternatives/): Overview of watch party guide and comparisons
+ - [Teleparty alternative guide](https://sync.koalastuff.net/alternatives/teleparty): Comparison with Teleparty / Netflix Party
+ - [Watch2Gether alternative guide](https://sync.koalastuff.net/alternatives/watch2gether): Comparison with Watch2Gether
+ - [Scener alternative guide](https://sync.koalastuff.net/alternatives/scener): Comparison with Scener
+ - [Kosmi alternative guide](https://sync.koalastuff.net/alternatives/kosmi): Comparison with Kosmi
+ - [TwoSeven alternative guide](https://sync.koalastuff.net/alternatives/twoseven): Comparison with TwoSeven
+ - [Screen sharing guide](https://sync.koalastuff.net/alternatives/screen-sharing): Guide on browser-based screen sharing
- [Privacy policy](https://sync.koalastuff.net/privacy.html): Data handling and privacy information
- [Imprint](https://sync.koalastuff.net/imprint.html): Legal notice
- [Sitemap](https://sync.koalastuff.net/sitemap.xml): Full site index
diff --git a/website/sitemap.xml b/website/sitemap.xml
index 92df56b..b3aa3d5 100644
--- a/website/sitemap.xml
+++ b/website/sitemap.xml
@@ -25,6 +25,336 @@
monthly
0.3
+
+ https://sync.koalastuff.net/
+ 2026-07-08
+ weekly
+ 1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/de/
+ 2026-07-08
+ weekly
+ 1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/fr/
+ 2026-07-08
+ weekly
+ 1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/es/
+ 2026-07-08
+ weekly
+ 1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/pt-BR/
+ 2026-07-08
+ weekly
+ 1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/ru/
+ 2026-07-08
+ weekly
+ 1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/it/
+ 2026-07-08
+ weekly
+ 1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/pl/
+ 2026-07-08
+ weekly
+ 1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/tr/
+ 2026-07-08
+ weekly
+ 1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/nl/
+ 2026-07-08
+ weekly
+ 1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/ja/
+ 2026-07-08
+ weekly
+ 1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/ko/
+ 2026-07-08
+ weekly
+ 1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/zh/
+ 2026-07-08
+ weekly
+ 1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/uk/
+ 2026-07-08
+ weekly
+ 1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/pt/
+ 2026-07-08
+ weekly
+ 1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
https://sync.koalastuff.net/alternatives
2026-07-08
@@ -69,6 +399,292 @@
+
+ https://sync.koalastuff.net/fr/alternatives
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/es/alternatives
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/pt-BR/alternatives
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/ru/alternatives
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/it/alternatives
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/pl/alternatives
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/tr/alternatives
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/nl/alternatives
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/ja/alternatives
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/ko/alternatives
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/zh/alternatives
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/uk/alternatives
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/pt/alternatives
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
https://sync.koalastuff.net/alternatives/teleparty
2026-07-08
@@ -113,6 +729,292 @@
+
+ https://sync.koalastuff.net/fr/alternatives/teleparty
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/es/alternatives/teleparty
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/pt-BR/alternatives/teleparty
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/ru/alternatives/teleparty
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/it/alternatives/teleparty
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/pl/alternatives/teleparty
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/tr/alternatives/teleparty
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/nl/alternatives/teleparty
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/ja/alternatives/teleparty
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/ko/alternatives/teleparty
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/zh/alternatives/teleparty
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/uk/alternatives/teleparty
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/pt/alternatives/teleparty
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
https://sync.koalastuff.net/alternatives/screen-sharing
2026-07-08
@@ -157,50 +1059,6 @@
-
- https://sync.koalastuff.net/fr/alternatives
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- https://sync.koalastuff.net/fr/alternatives/teleparty
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
https://sync.koalastuff.net/fr/alternatives/screen-sharing
2026-07-08
@@ -223,50 +1081,6 @@
-
- https://sync.koalastuff.net/es/alternatives
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- https://sync.koalastuff.net/es/alternatives/teleparty
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
https://sync.koalastuff.net/es/alternatives/screen-sharing
2026-07-08
@@ -289,314 +1103,6 @@
-
- https://sync.koalastuff.net/it/alternatives
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- https://sync.koalastuff.net/it/alternatives/teleparty
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- https://sync.koalastuff.net/it/alternatives/screen-sharing
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- https://sync.koalastuff.net/nl/alternatives
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- https://sync.koalastuff.net/nl/alternatives/teleparty
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- https://sync.koalastuff.net/nl/alternatives/screen-sharing
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- https://sync.koalastuff.net/pl/alternatives
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- https://sync.koalastuff.net/pl/alternatives/teleparty
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- https://sync.koalastuff.net/pl/alternatives/screen-sharing
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- https://sync.koalastuff.net/pt/alternatives
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- https://sync.koalastuff.net/pt/alternatives/teleparty
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- https://sync.koalastuff.net/pt/alternatives/screen-sharing
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- https://sync.koalastuff.net/pt-BR/alternatives
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- https://sync.koalastuff.net/pt-BR/alternatives/teleparty
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
https://sync.koalastuff.net/pt-BR/alternatives/screen-sharing
2026-07-08
@@ -619,50 +1125,6 @@
-
- https://sync.koalastuff.net/ru/alternatives
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- https://sync.koalastuff.net/ru/alternatives/teleparty
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
https://sync.koalastuff.net/ru/alternatives/screen-sharing
2026-07-08
@@ -686,48 +1148,48 @@
- https://sync.koalastuff.net/tr/alternatives
+ https://sync.koalastuff.net/it/alternatives/screen-sharing
2026-07-08
weekly
0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- https://sync.koalastuff.net/tr/alternatives/teleparty
+ https://sync.koalastuff.net/pl/alternatives/screen-sharing
2026-07-08
weekly
0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
https://sync.koalastuff.net/tr/alternatives/screen-sharing
@@ -752,48 +1214,26 @@
- https://sync.koalastuff.net/ja/alternatives
+ https://sync.koalastuff.net/nl/alternatives/screen-sharing
2026-07-08
weekly
0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- https://sync.koalastuff.net/ja/alternatives/teleparty
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
https://sync.koalastuff.net/ja/alternatives/screen-sharing
@@ -817,50 +1257,6 @@
-
- https://sync.koalastuff.net/ko/alternatives
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- https://sync.koalastuff.net/ko/alternatives/teleparty
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
https://sync.koalastuff.net/ko/alternatives/screen-sharing
2026-07-08
@@ -883,50 +1279,6 @@
-
- https://sync.koalastuff.net/zh/alternatives
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- https://sync.koalastuff.net/zh/alternatives/teleparty
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
https://sync.koalastuff.net/zh/alternatives/screen-sharing
2026-07-08
@@ -949,50 +1301,6 @@
-
- https://sync.koalastuff.net/uk/alternatives
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- https://sync.koalastuff.net/uk/alternatives/teleparty
- 2026-07-08
- weekly
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
https://sync.koalastuff.net/uk/alternatives/screen-sharing
2026-07-08
@@ -1016,333 +1324,1345 @@
- https://sync.koalastuff.net/
+ https://sync.koalastuff.net/pt/alternatives/screen-sharing
2026-07-08
weekly
- 1.0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- https://sync.koalastuff.net/de/
+ https://sync.koalastuff.net/alternatives/watch2gether
2026-07-08
weekly
- 0.8
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- https://sync.koalastuff.net/fr/
+ https://sync.koalastuff.net/de/alternatives/watch2gether
2026-07-08
weekly
- 0.8
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- https://sync.koalastuff.net/es/
+ https://sync.koalastuff.net/fr/alternatives/watch2gether
2026-07-08
weekly
- 0.8
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- https://sync.koalastuff.net/pt-BR/
+ https://sync.koalastuff.net/es/alternatives/watch2gether
2026-07-08
weekly
- 0.8
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- https://sync.koalastuff.net/ru/
+ https://sync.koalastuff.net/pt-BR/alternatives/watch2gether
2026-07-08
weekly
- 0.8
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- https://sync.koalastuff.net/it/
+ https://sync.koalastuff.net/ru/alternatives/watch2gether
2026-07-08
weekly
- 0.8
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- https://sync.koalastuff.net/pl/
+ https://sync.koalastuff.net/it/alternatives/watch2gether
2026-07-08
weekly
- 0.8
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- https://sync.koalastuff.net/tr/
+ https://sync.koalastuff.net/pl/alternatives/watch2gether
2026-07-08
weekly
- 0.8
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- https://sync.koalastuff.net/nl/
+ https://sync.koalastuff.net/tr/alternatives/watch2gether
2026-07-08
weekly
- 0.8
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- https://sync.koalastuff.net/ja/
+ https://sync.koalastuff.net/nl/alternatives/watch2gether
2026-07-08
weekly
- 0.8
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- https://sync.koalastuff.net/ko/
+ https://sync.koalastuff.net/ja/alternatives/watch2gether
2026-07-08
weekly
- 0.8
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- https://sync.koalastuff.net/zh/
+ https://sync.koalastuff.net/ko/alternatives/watch2gether
2026-07-08
weekly
- 0.8
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- https://sync.koalastuff.net/uk/
+ https://sync.koalastuff.net/zh/alternatives/watch2gether
2026-07-08
weekly
- 0.8
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- https://sync.koalastuff.net/pt/
+ https://sync.koalastuff.net/uk/alternatives/watch2gether
2026-07-08
weekly
- 0.8
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/pt/alternatives/watch2gether
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/alternatives/scener
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/de/alternatives/scener
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/fr/alternatives/scener
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/es/alternatives/scener
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/pt-BR/alternatives/scener
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/ru/alternatives/scener
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/it/alternatives/scener
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/pl/alternatives/scener
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/tr/alternatives/scener
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/nl/alternatives/scener
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/ja/alternatives/scener
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/ko/alternatives/scener
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/zh/alternatives/scener
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/uk/alternatives/scener
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/pt/alternatives/scener
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/alternatives/kosmi
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/de/alternatives/kosmi
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/fr/alternatives/kosmi
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/es/alternatives/kosmi
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/pt-BR/alternatives/kosmi
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/ru/alternatives/kosmi
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/it/alternatives/kosmi
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/pl/alternatives/kosmi
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/tr/alternatives/kosmi
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/nl/alternatives/kosmi
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/ja/alternatives/kosmi
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/ko/alternatives/kosmi
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/zh/alternatives/kosmi
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/uk/alternatives/kosmi
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/pt/alternatives/kosmi
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/alternatives/twoseven
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/de/alternatives/twoseven
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/fr/alternatives/twoseven
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/es/alternatives/twoseven
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/pt-BR/alternatives/twoseven
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/ru/alternatives/twoseven
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/it/alternatives/twoseven
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/pl/alternatives/twoseven
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/tr/alternatives/twoseven
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/nl/alternatives/twoseven
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/ja/alternatives/twoseven
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/ko/alternatives/twoseven
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/zh/alternatives/twoseven
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/uk/alternatives/twoseven
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://sync.koalastuff.net/pt/alternatives/twoseven
+ 2026-07-08
+ weekly
+ 0.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+