Skips videos in CodeHS assignments.
目前為
// ==UserScript==
// @name CodeHS Video Skipper
// @namespace https://thetridentguy.com
// @version 1.0.0
// @description Skips videos in CodeHS assignments.
// @author TheTridentGuy
// @match https://codehs.com/student/*/section/*/assignment/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=codehs.com
// @run-at document-idle
// @license MIT
// ==/UserScript==
(function() {
'use strict';
document.getElementById("done-button").click();
})();