Skip to content

Instantly share code, notes, and snippets.

@tacohitbox
Created November 15, 2021 14:41
Show Gist options
  • Save tacohitbox/ee88f6206d7e66900b18dc6c177886d9 to your computer and use it in GitHub Desktop.
Save tacohitbox/ee88f6206d7e66900b18dc6c177886d9 to your computer and use it in GitHub Desktop.
Userscript to remove Study.com's transcript paywall
// ==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