Tested tool guide
Tested browser tools
Checked August 16, 2026
What Website Name Schema Generator does, with a checked example
When a page ranks in Google, the site name shown with the title is whatever Google derives from your domain and content. This tool turns three inputs - the site's name, shorter alternates, and the homepage URL - into a schema.org WebSite JSON-LD block you paste into the home page's head. The surprise is that it is a strong signal, not a guarantee: Google may still display a different name, and the markup does nothing for rankings. The usual mistake is entering the company's legal name when the site is known by something shorter; Google's guidance is to use the exact name as it appears on the site.
Worked example
A concrete input and expected output from the current implementation.
Input
Site name: Willow & Finch Specialty Coffee Roasters / Alternate name: Willow & Finch / URL: https://example.com
->
Expected output
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Willow & Finch Specialty Coffee Roasters",
"alternateName": "Willow & Finch",
"url": "https://example.com"
}
</script> Each entered value lands on the matching WebSite property: name is the property Google's site-name feature requires, alternateName is the recommended fallback for shorter or localized display, and url anchors the markup to the home page. Google uses the alternate when the full name is too long to fit in the results.