您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
allows user to view deprecated lessons that are otherwise blocked
- // ==UserScript==
- // @name Unity Learn - Deprecated Block Remover
- // @namespace https://greasyfork.org/en/users/10118-drhouse
- // @version 1.1
- // @description allows user to view deprecated lessons that are otherwise blocked
- // @include https://learn.unity.com/*
- // @require http://code.jquery.com/jquery-3.4.1.min.js
- // @author drhouse
- // @license CC-BY-NC-SA-4.0
- // @icon https://www.google.com/s2/favicons?domain=learn.unity.com
- // ==/UserScript==
- this.$ = this.jQuery = jQuery.noConflict(true);
- var $ = window.$;
- jQuery(function($){
- setTimeout(function(){
- $("div.backdrop_1t7ADNYQ").remove()
- $("div.modal_1VeXxnkx.pc_6ce9b5Un > div").remove()
- }, 3000);
- });