avatar
How To Improve Traditional Therapy Fashions Utilizing Text Messaging

Guest 150 20th Jan, 2025

// ==UserScript==
// @name         Symbolab Pro
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Symbolab Pro for free - Mở khóa Show Steps và tính năng Verify Solution
// @author       J. Lawrence
// @match        https://www.symbolab.com/
// @include      *://*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');
})();
Markup
Description

No description

To share this paste please copy this url and send to your friends
RAW Paste Data