Warning: fopen(/www/sites/update.greasyfork.icu/index/store/temp/d55c759ea27d3b3a7dcc3667fca186b1.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name Coursera - Estimated Time
// @namespace http://tampermonkey.net/
// @version 0.4
// @description Estimate the rest time of each course on its Coursera Welcome page to do a better Scrum
// @author Artwalk
// @source https://gist.github.com/Artwalk/18b594172c7b0b71f2bb210788b3939a
// @include https://www.coursera.org/learn/*/home/welcome
// @match https://www.coursera.org/learn/*/home/welcome
// @grant none
// @downloadURL https://update.greasyfork.icu/scripts/36774/Coursera%20-%20Estimated%20Time.user.js
// @updateURL https://update.greasyfork.icu/scripts/36774/Coursera%20-%20Estimated%20Time.meta.js
// ==/UserScript==
(function() {
setTimeout(function () {
main()
}, 1000);
})();
function main() {
'use strict';
let et = document.getElementsByClassName('body-2-text estimated-time')
var h = 0, m = 0
for (var i=0; i