If you practice SEO, odds are you'll have spent plenty of time copying, and pasting wishing you could at least have some of that precious time back.
There are some repetitive tasks I do every day that these bookmarklets will make less of a timesuck:
To use this tool you have to paste a url minus the initial domain.com/.
This bookmarklet rocks because you can now copy and paste full URL you want to fetch into the input like:
click the bookmarklet and you have just made magic.
Magic?
Yep, magic. The bookmarklet will clean up your URL into the Format the tool needs.
Here's how to build this Bookmarklet:
Right click on the bookmarks bar and choose add Page, or add New Bookmark
Paste this code into the address input:
javascript: (function() {url = document.getElementById("path-input").value;url = url.replace(/^.*\/\/[^\/]+[/]/, '');document.getElementById("path-input").value = url;}());
I love this next bookmarklet because it does three things at once!
It opens the current page in Google's PageSpeed tool, Google's Sturctured data Testing tool, and open's up Google's Cache of the current page with one click of the Bookmarklet.
Here's how to build the bookmarklet:
Right click on the bookmarks bar and choose add Page, or add New Bookmark
Paste this code into the address input:
javascript: (function(){url='https://developers.google.com/speed/pagespeed/insights/?url='+encodeURIComponent(location.href);javascript:window.open(url);}());(function(){url='https://webcache.googleusercontent.com/search?strip=0&q=cache:'+encodeURIComponent(location.href);javascript:window.open(url);}());(function(){url='https://search.google.com/structured-data/testing-tool/u/0/#url='+encodeURIComponent(location.href);javascript:window.open(url);}());
I love this next bookmarklet because it allows you to count characters of a highlighted string of text!
To use it, select a block of text (page title inputs and metadescriptions input fields were my inspiration).
Click the book marklet and it will show you how many characters are in the selected string.
Here's how to build the bookmarklet:
Right click on the bookmarks bar and choose add Page, or add New Bookmark
Paste this code into the address input:
javascript:(function(){var a=(document.selection?document.selection.createRange().text:document.getSelection()).toString();alert(a.length?"Characters: "+a.length+"\nWords: "+a.replace(/\s{2,}/g," ").split(" ").length:"No text selected.")})();
Paste it along with a brief decription of what it does in the comments below, so we can all work a little smarter.
Bike Shop SEO © 2023