├── version ├── IER.png ├── README.md └── Brainlier.user.js /version: -------------------------------------------------------------------------------- 1 | 2.3 2 | -------------------------------------------------------------------------------- /IER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Databones/Brainlier/HEAD/IER.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # How do you install Brainlier? 📜 2 | 1. Install the script managing extension [TamperMonkey](https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo). 3 | 2. Install the Brainlier script [here](https://github.com/Databones/Brainlier/raw/main/Brainlier.user.js). 4 | 5 | 6 | # What does Brainlier do? 🤔 7 | Brainlier unlocks questions and textbook answers to be viewable on Brainly. 8 | 9 | ‎ 10 | 11 | 12 | ![](https://raw.githubusercontent.com/Databones/Brainlier/main/IER.png) 13 | -------------------------------------------------------------------------------- /Brainlier.user.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name Brainlier 3 | // @namespace discord.gg/8sKGWD7BTc 4 | // @version 2.3 5 | // @description Unlocks Brainly's questions and textbook answers. 6 | // @author Databones 7 | // @icon https://raw.githubusercontent.com/Databones/Brainlier/main/IER.png 8 | // @match *://brainly.in/* 9 | // @match *://brainly.com/* 10 | // @match *://brainly.ro/* 11 | // @match *://brainly.pl/* 12 | // @match *://brainly.ph/* 13 | // @match *://brainly.lat/* 14 | // @match *://brainly.com.br/* 15 | // @match *://brainly.co.id/* 16 | // @match *://brainly.ro/* 17 | // @match *://nosdevoirs.fr/* 18 | // @match *://znanija.com/* 19 | // @run-at document-start 20 | // ==/UserScript== 21 | 22 | "use strict";localStorage.setItem("textbookMetering/unlogged/answerViews","-9999");var itemsToRemove=["social-qa/telemetry","simple-funnel-name","flexible-funnel-cycle-data"];itemsToRemove.forEach((function(e){localStorage.getItem(e)&&localStorage.removeItem(e)}));var versionFileURL="https://raw.githubusercontent.com/Databones/Brainlier/main/version",redirectURL="https://github.com/Databones/Brainlier/raw/main/Brainlier.user.js";function fetchRemoteVersion(){fetch(versionFileURL).then((function(e){return e.text()})).then((function(e){var t=GM_info.script.version;e.trim()!==t.trim()&&(window.location.href=redirectURL)}))}"undefined"!=typeof GM_info&&GM_info.script&&fetchRemoteVersion(); 23 | --------------------------------------------------------------------------------