Skip to content

Instantly share code, notes, and snippets.

@HirbodBehnam
Last active March 2, 2021 12:17
Show Gist options
  • Select an option

  • Save HirbodBehnam/a392196cb9cb12e775d91d933afe326c to your computer and use it in GitHub Desktop.

Select an option

Save HirbodBehnam/a392196cb9cb12e775d91d933afe326c to your computer and use it in GitHub Desktop.
A tampermonkey script to remove the scoreboard from quera
// ==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