📊 Explore SEO Tools

High-level SEO utilities to optimize titles, descriptions, content readability, schema, and on-page metadata.

🔎 SERP Snippet Preview

Preview how your page might look on Google (desktop).

🖥️ Title Pixel Width Checker

Desktop safe ~580px. Checks pixel width (more accurate than characters).

🧾 Meta Description Analyzer

Desktop safe ~920px (usually ~150–160 chars). Checks both.

📖 Readability Checker (Flesch)

Target 60–80 for general web content.

🔍 Keyword Density (Stopwords-aware)

Counts meaningful words; enter focus keyword/phrase.

🧠 Keyword Cluster Generator

Paste keywords (one per line) — groups by stem/first token.

    🧩 FAQ Schema Generator (JSON-LD)

    Write Q/A pairs. Format: Q:… next line A:…

    📣 OG & Twitter Meta Tag Generator

    Generate social preview tags for rich sharing.

    🔗 URL Auditor

    Checks lowercase, hyphens, length, UTM, trailing slash.

      🤖 robots.txt Generator

      Basic allow/Disallow + Sitemap URL.

      🚀 Discover More Tools

      Explore AI, Utility, Education & Travel tools to speed up your workflow.

      `; } /* 8) Open Graph & Twitter Generator */ function genOG(){ const t=document.getElementById('ogTitle').value||'Page Title'; const d=document.getElementById('ogDesc').value||'Short description for social preview.'; const u=document.getElementById('ogURL').value||'https://payziox.com/page'; const i=document.getElementById('ogImage').value||'https://payziox.com/og-image.jpg'; const out=` `; document.getElementById('ogOutput').value=out; } /* 9) URL Auditor */ function auditURL(){ const u=(document.getElementById('auditURL').value||'').trim(); const list=document.getElementById('auditResult'); list.innerHTML=''; if(!u){list.innerHTML='
    • Enter a URL!
    • ';return;} const items=[]; if(u.includes(' ')) items.push('❌ Contains spaces.'); if(u!==u.toLowerCase()) items.push('⚠️ Use lowercase.'); if(!/-/.test(u)) items.push('ℹ️ Consider hyphens for readability.'); if(u.length>115) items.push('⚠️ Quite long (>115 chars).'); if(/\?utm_/.test(u)) items.push('ℹ️ UTM parameters present.'); if(!/\/$/.test(u.split('?')[0])) items.push('ℹ️ Consider consistent trailing slash policy.'); if(!items.length) items.push('✅ Looks SEO-friendly!'); list.innerHTML=items.map(i=>`
    • ${i}
    • `).join(''); } /* 10) robots.txt Generator */ function genRobots(){ const root=(document.getElementById('siteRoot').value||'https://payziox.com').replace(/\/$/,''); const dis=(document.getElementById('disallowPaths').value||'').split('\n').map(x=>x.trim()).filter(Boolean); let txt=`User-agent: *\nAllow: /\n`; dis.forEach(p=>{ txt += `Disallow: ${p}\n`; }); txt += `\nSitemap: ${root}/sitemap.xml`; document.getElementById('robotsOut').value=txt; }