Learn C The Hard Way Next Page

Add a next page button to the bottom of Learn C The Hard Way

  1. // ==UserScript==
  2. // @name Learn C The Hard Way Next Page
  3. // @namespace http://cyanium.com/
  4. // @version 0.1
  5. // @description Add a next page button to the bottom of Learn C The Hard Way
  6. // @match http://c.learncodethehardway.org/book/*
  7. // @grant none
  8. // @copyright 2012+, Ry167
  9. // ==/UserScript==
  10. (function(){
  11. var loc = window.location.href;
  12. var number = parseInt(loc.match(/\d+/)[0])+1;
  13. var href = "http://c.learncodethehardway.org/book/ex"+number+".html";
  14. var link = document.createElement('a');
  15. link.setAttribute('href', href);
  16. link.innerText = "Next Page";
  17. link.setAttribute('style',"font-size:69px");
  18. document.getElementById("extra-credit").appendChild(link);
  19. })();