Skip to content

Instantly share code, notes, and snippets.

View KentoNishi's full-sized avatar
:octocat:
"I have experiments to run, there is research to be done" ― GLaDOS

Kento Nishi KentoNishi

:octocat:
"I have experiments to run, there is research to be done" ― GLaDOS
View GitHub Profile
@KentoNishi
KentoNishi / main.js
Created January 24, 2022 20:26
Give everyone 1 point in Schoology
elements = Array.from(document.querySelectorAll('div')).filter(e => e.className.includes('QuestionGrade-focus-outline'));
elements.forEach((item, index) => {
setTimeout(() => {
item.click();
const score = item.querySelector('input');
score.value = '1';
setTimeout(() => {
score.dispatchEvent(new Event('blur'));
}, 100);
}, index * 500);