Symolab Pro - unlock full steps and verify solutions for free

Unlock Symbolab pro features for free

目前為 2020-07-20 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Symolab Pro - unlock full steps and verify solutions for free
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Unlock Symbolab pro features for free
// @author       eyl327
// @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");
        }

        /* improvements to dark mode */
        fixDarkMode = function() {
            if($("#invert-style").length > 0) {
                var invertStyle = $("#invert-style")[0].innerHTML;
                $("#invert-style")[0].remove();
                document.head.insertAdjacentHTML("beforeend",
                    \`<style type='text/css' id="invert-style">\`+
                    invertStyle+\`
                    img,
                    #HomeTopNav svg,
                    button.btn.btn-large.btn-custom.search,
                    button.verify-button,
                    li#solutionsTopNav a span,
                    span.bloggerIcon,
                    a.show-hide-button.show-hide-plot.print-hide,
                    a.stepsPracticeLink span,
                    .m2u>li>a.active,
                    .m3u>li>a.active,
                    li a.nl-leftMenu span,
                    .nl-feedback.nl-redText.print-hide span {
                        filter: invert(1);
                    }

                    img.open,
                    img.close,
                    ul.solution-examples li svg,
                    a.nl-leftMenu.active span {
                        filter: invert(0);
                    }

                    button.btn.btn-large.btn-custom.search {
                        border: 1px solid black;
                    }

                    div#nl-subNav {
                        background-color: rgba(220, 220, 220, 1);
                    }

                    a.nl-topMenu span,
                    a.nl-topMenu.active .nl-topSubMenu span,
                    #nl-subNav ul li .nl-topSubMenu a:hover span {
                        color: #000000;
                    }

                    a.nl-topMenu.active span,
                    #nl-subNav ul li a:hover span {
                        color: #ffffff;
                    }

                    @-moz-document url-prefix() {
                        body {
                            background-color: #111111;
                        }
                    }</style>\`);
            }
        };

        fixDarkMode();

        /* overwrite toggle function to fix dark mode at end */
        lightsOut = function() {
            var a = getInverseCookieValue();
            if (a === "true") {
                createInvertCookie("false");
                liveToggleInvert(false);
                symbolab_log(getProductByUrl(), "LightsOn", null)
            } else {
                createInvertCookie("true");
                liveToggleInvert(true);
                symbolab_log(getProductByUrl(), "LightsOut", null)
            }
            fixDarkMode();
        };
    }`;

    document.documentElement.setAttribute('onreset', code);
    document.documentElement.dispatchEvent(new CustomEvent('reset'));
    document.documentElement.removeAttribute('onreset');

})()