<aside> 🚨 Want more notes like this? Subscribe to weekly strategy emails: seonotebook.com
</aside>
Howdy! Today’s note is going to show you how to calculate the info content to money page ratio of any website, all you need are the sitemaps!
You can do it for your own site or your competitors 👀
In order to easily extract sitemaps, I created a JavaScript bookmarklet that copies only the URLs that end in “.xml”
To create the bookmarklet, bookmark any page and paste the following code into the URL field of the bookmark:
javascript:(function() { var urls = []; var linkElements = document.getElementsByTagName('a'); for (var i = 0; i < linkElements.length; i++) { var url = linkElements[i].href; if (url.endsWith('.xml')) { urls.push(url); } } if (urls.length > 0) { var textarea = document.createElement('textarea'); textarea.value = urls.join('\\n'); document.body.appendChild(textarea); textarea.select(); document.execCommand('copy'); document.body.removeChild(textarea); alert('XML links copied. Thanks SEO Notebook!'); } else { alert('No XML URLs found on this page.'); }})();
After you installed it, go ahead and try it with my sitemap: https://seonotebook.com/sitemap_index.xml
Let’s get into the heart of the note, the calculator!