Great Course

Hide readed article

2019-04-19 기준 버전입니다. 최신 버전을 확인하세요.

// ==UserScript==
// @name     Great Course
// @description Hide readed article
// @include    https://www.thegreatcoursesplus.com/*
// @require  http://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js
// @version 0.0.1.20161031142838
// @namespace https://greasyfork.org/users/38384
// ==/UserScript==

 $(function() {
   var s = $("video").attr("src");
   var x = $(".lecture-top h1");
   
   x.append("<a href='" + s +"'>Save</a>");
   
  });