DistractionType

prompt a typing test before visiting distracting sites

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         DistractionType
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  prompt a typing test before visiting distracting sites
// @author       dook
// @match        https://*.reddit.com/*
// @match        https://*.twitter.com/*
// @match        https://*.facebook.com/*

// @match        https://monkeytype.com/

// @grant        GM_setValue
// @grant        GM_getValue
// @grant        GM_addValueChangeListener
// @license MIT
// ==/UserScript==

(function () {
    'use strict';

    //Companion script
    if (window.location.href === "https://monkeytype.com/") {
        const minWPM = 60;
        const sessionTime = 10 * 60 * 1000; //todo global session valid for 10 minutes before another test

        function GM_sendMessage(label) {
            GM_setValue(label, Array.from(arguments).slice(1));
        }

        let checkTimer = setInterval(function () {
            console.log('checking wpm...');
            const wpm = document.querySelector('#result > div:nth-child(1) > div.group.wpm > div.bottom').innerText;
            try {
                parseInt(wpm);
            } catch (e) { }

            if (wpm >= minWPM) {
                GM_sendMessage('unlock', Math.random());
                clearInterval(checkTimer); //stop checking
                window.close();
            }

        }, 3000);
    }
    else { //Blocking script (fb, twitter etc.)
        console.log('running distracted monkey');
        let locked = null; //the holy variable

        function popupwindow(url, title, w, h) {
            var left = (screen.width / 2) - (w / 2);
            var top = (screen.height / 2) - (h / 2);
            return window.open(url, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=' + w + ', height=' + h + ', top=' + top + ', left=' + left);
        }

        //Main code, run on page load
        function run() {
            locked = true;
            document.querySelector('body').style.filter = 'blur(6px)';
            popupwindow('https://monkeytype.com/', 'Type time cunt', 800, 1200);
        }
        window.addEventListener('load', run, false);

        //disable clicks lmao
        function handler(e) {
            if (!locked) return;
            e.stopPropagation();
            e.preventDefault();
        }
        document.addEventListener("click", handler, true);

        //Get message from typing tab that the test has been finished
        GM_addValueChangeListener("unlock", () => {
            locked = false;
            document.querySelector('body').style.filter = 'none';
        });
    }
})();