Bunpro: Egg Timer

Times your review session.

目前為 2018-06-30 提交的版本,檢視 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Bunpro: Egg Timer
// @namespace    http://tampermonkey.net/
// @version      0.2.2
// @description  Times your review session.
// @author       Kumirei
// @include      https://bunpro.jp/*
// @require      https://greasyfork.org/scripts/5392-waitforkeyelements/code/WaitForKeyElements.js?version=115012
// @grant        none
// ==/UserScript==

(function() {
				var elapsed = 0;
		waitForKeyElements('#study-page', function() {
				$('.help-button').after('<div id="egg-timer" class="help-button" style="left: 60px;">00:00</div>');
				setInterval(function() {
						elapsed++;
						var seconds = String(elapsed % 60);
						if (seconds < 10) seconds = '0' + seconds;
						var minutes = String(Math.floor(elapsed/60));
						if (minutes < 10) minutes = '0' + minutes;
						else minutes = minutes % 60;
						var hours = '';
						if (elapsed/60 > 59) {
								hours = String(Math.floor(elapsed/3600));
								if (hours < 10) hours = '0' + hours;
								hours += ':';
						}
						var timestamp = hours + minutes + ':' + seconds;
						$('#egg-timer')[0].innerText = timestamp;
				}, 1000);
		});
})();