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

답글 게시

답글을 게시하려면 로그인하세요.