Greasy Fork

Greasy Fork is available in English.

Brainly Plus Brazil

Desbloqueie perguntas do Brainly.

目前为 2021-07-01 提交的版本。查看 最新版本

// ==UserScript==
// @name         Brainly Plus Brazil
// @version      1.0
// @description  Desbloqueie perguntas do Brainly.
// @author       Luan. Credits//Usa version: ExtraTankz & Gradyn Wursten
// @match        https://brainly.com.br/tarefa/*
// @grant        none
// @namespace http://greasyfork.icu/users/789331
// ==/UserScript==

(function() {
    'use strict';
    localStorage.clear()
    window.onload = function () {
    	document.getElementsByClassName("brn-expanded-bottom-banner")[0].remove()
    	document.getElementsByClassName("brn-brainly-plus-box")[0].remove()
    	document.getElementsByClassName("brn-fullscreen-toplayer")[0].remove()
    	document.getElementsByClassName("sg-overlay sg-overlay--dark")[0].remove()
    }
})();