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; }`);

發表回覆

登入以回覆