GameFAQs Quick AMP

Tosses a link to your AMP in the header.

  1. // ==UserScript==
  2. // @name GameFAQs Quick AMP
  3. // @description Tosses a link to your AMP in the header.
  4. // @author King of Cats
  5. // @namespace Cats
  6. // @version 1
  7. // @grant none
  8. // @include http://www.gamefaqs.com/*
  9. // ==/UserScript==
  10.  
  11. var userMast = document.getElementsByClassName("masthead_user");
  12. if (userMast[0] != null) {
  13. var ampLink = document.createElement('a');
  14. ampLink.setAttribute("href","/boards/myposts.php");
  15. ampLink.textContent = "AMP";
  16. userMast[0].insertBefore(ampLink,userMast[0].childNodes[2]);
  17. }