Brainly Unlocker

Bypass brainly paywall, updated by ExtraTankz

当前为 2021-03-08 提交的版本,查看 最新版本

// ==UserScript==
// @name         Brainly Unlocker
// @namespace    https://gradyn.com
// @version      1.0
// @description  Bypass brainly paywall, updated by ExtraTankz
// @author       ExtraTankz & Gradyn Wursten
// @match        https://brainly.com/question/*
// @grant        none
// ==/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()
    }
})();