<aside> 🚨 Want more notes like this? Subscribe to weekly strategy emails: seonotebook.com

</aside>

Before we start, I created all these bookmarklets with ChatGPT, if you want to learn how to do create your own, read this: SEO Bookmarklets Brought to you by ChatGPT

You’ll need to create two bookmarklets and use the SEO Notebook Google Docs Addon when it comes time to implement.

In order to create a bookmarklet follow these steps:

  1. bookmark an page

  2. rename the bookmark

  3. paste the JavaScript you created with ChatGPT into the URL field of the bookmark.

  4. Save it and click the bookmark on the page you want to create the action with. That’s it!

Before we get into the note. You’ve probably heard the SEO saying “do all the things” right? This is very much part of that, and is also part of extreme on-page SEO which can be so fun!

To get started, let’s create the bookmarklets.

The first bookmarklet copies the bolded words for the SERP or any page for that matter:

javascript:(function() {  var emTags = document.getElementsByTagName('em');  var emWords = '';  for (var i = 0; i < emTags.length; i++) {    emWords += emTags[i].textContent + '\\n';  }  if (emWords !== '') {    var tempInput = document.createElement('textarea');    tempInput.value = emWords.trim();    document.body.appendChild(tempInput);    tempInput.select();    document.execCommand('copy');    document.body.removeChild(tempInput);    alert('Copied the text:\\n\\n' + emWords.trim());  } else {    alert('No <em> tags found on this page.');  }})();