Great Course

Hide readed article

  1. // ==UserScript==
  2. // @name Great Course
  3. // @description Hide readed article
  4. // @include https://www.thegreatcoursesplus.com/*
  5. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js
  6. // @version 0.0.1.20161031142838
  7. // @namespace https://greasyfork.org/users/38384
  8. // ==/UserScript==
  9.  
  10. $(function() {
  11. debugger;
  12. var s = $("video").attr("src");
  13. var x = $(".lecture-top h1");
  14. x.append("<a href='" + s +"'>Save</a>");
  15. });