Pomocí site:www.hledana-domena.cz můžete na google zjistit, jaké stránky jsou z této URL indexované (pozor, nemusí to být stejný seznam, o kterém ví Google Search console).
A pokud chcete z těchto výsledků získat jen URL rychle a bez práce, stačí do konsole prohlížeče vložit jednoduchý skript, který je vypíše:
- Stačí
##vaše-domena###přepsat za doménu, kterou hledáte.
const DOMAIN = '##vaše-domena###';
const urls = [...new Set(
Array.from(document.querySelectorAll('a'))
.map(a => a.href)
.filter(h =>
h.startsWith('http') &&
h.includes(DOMAIN) &&
!h.includes('google.com') &&
!h.includes('/search?') &&
!h.includes('/imgres?') &&
!h.includes('/url?') &&
!h.includes('webcache.googleusercontent.com') &&
!h.includes('translate.google.com')
)
.map(h => {
// odstraníme tracking parametry ?utm...
try {
const u = new URL(h);
u.search = '';
return u.toString();
} catch {
return h;
}
})
)];
console.log(urls.join('\n'));

