Greasy Fork 支持简体中文。

Unity Learn - Deprecated Block Remover

allows user to view deprecated lessons that are otherwise blocked

目前為 2021-12-19 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Unity Learn - Deprecated Block Remover
  3. // @namespace https://greasyfork.org/en/users/10118-drhouse
  4. // @version 1.0
  5. // @description allows user to view deprecated lessons that are otherwise blocked
  6. // @include https://learn.unity.com/*
  7. // @require http://code.jquery.com/jquery-3.4.1.min.js
  8. // @author drhouse
  9. // @grant GM_notification
  10. // @license CC-BY-NC-SA-4.0
  11. // ==/UserScript==
  12. this.$ = this.jQuery = jQuery.noConflict(true);
  13. var $ = window.$;
  14.  
  15. jQuery(function($){
  16.  
  17. setTimeout(function(){
  18. $("div.backdrop_1t7ADNYQ").remove()
  19. $("div.modal_1VeXxnkx.pc_6ce9b5Un > div").remove()
  20. }, 3000);
  21.  
  22.  
  23. });