Created
November 15, 2021 14:41
-
-
Save tacohitbox/ee88f6206d7e66900b18dc6c177886d9 to your computer and use it in GitHub Desktop.
Userscript to remove Study.com's transcript paywall
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 Remove paywall for Study.com | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Removes study.com's transcript paywall. | |
// @author tacohitbox | |
// @match https://study.com/academy/lesson/* | |
// @icon https://study.com/favicon.ico | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
document.querySelector("#transcriptMain .hidden").style = "display:block !important; visibility: visible !important"; | |
document.querySelector("#transcriptMain .faded-content").style = "position: inherit !important"; | |
document.querySelector(".article-cutoff-div").remove(); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment