Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Symbolab Pro
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description Symbolab pro for free
- // @author J. Lawrence
- // @match https://www.symbolab.com/
- // @include https://*symbolab.com/*
- // @grant none
- // ==/UserScript==
- (function () {
- 'use strict';
- var code = `window.onload = function(){
- /* set subscription params */
- if (typeof(SYSTEPS) != 'undefined') { SYSTEPS.subscribed = true };
- if (typeof(SOLUTIONS) != 'undefined') { SOLUTIONS.subscribed = true };
- if (typeof(SYMBOLAB) != 'undefined') { SYMBOLAB.params.subscribed = true };
- isUserLoggedIn = function() { return true; }
- /* remove popup when verify solution box is clicked */
- if ($("#click-capture")) {
- $("#click-capture").addClass("click-capture-subscribed");
- }
- }`;
- document.documentElement.setAttribute('onreset', code);
- document.documentElement.dispatchEvent(new CustomEvent('reset'));
- document.documentElement.removeAttribute('onreset');
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement