Hide Solution Button - learnpython.org

Hide Solution Button at learnpython.org interactive courses

< 脚本 Hide Solution Button - learnpython.org 的反馈

评价:好评 - 脚本运行良好

HKR
§
发布于:2022-06-12

The userscript could possibly be reduced to only this. Even better would be having it as a userstyle.

// ==UserScript==
// @name        Hide Solution Button - learnpython.org
// @namespace   Violentmonkey Scripts
// @match       https://www.learnpython.org/*
// @grant       GM_addStyle
// @version     1.0
// @author      Sergey Zhdanov
// @description Hide Solution Button at learnpython.org interactive courses
// @license     MIT
// ==/UserScript==

GM_addStyle(`.dcl-btn-secondary[uib-tooltip="Show Solution"] { display: none; }`);

发布留言

登录以发布留言。