Last active
March 2, 2021 12:17
-
-
Save HirbodBehnam/a392196cb9cb12e775d91d933afe326c to your computer and use it in GitHub Desktop.
A tampermonkey script to remove the scoreboard from quera
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Quera Scoreboard Remover | |
| // @version 2 | |
| // @description Remove the scoreboard from quera | |
| // @author Hirbod Behnam | |
| // @match https://quera.ir/course/assignments/* | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| var links = document.getElementsByTagName("a"); | |
| for(var i = 0; i < links.length; i++){ | |
| if (links[i].innerText == "جدول امتیازات") { | |
| links[i].remove(); | |
| } | |
| } | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment