Skip to content

Commit a0ca468

Browse files
added license and changed DOMContentLoaded to load
DOMContentLoaded did not work originally, probably because the blur was added using javascript after DOM was loaded
1 parent 673ccb2 commit a0ca468

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Wellio Locked Question Unblurrer-2025-06-06.user.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,14 @@
77
// @match https://app.wellioeducation.com/schools/*/classes/*/lessons/*/learn
88
// @icon https://www.google.com/s2/favicons?sz=64&domain=wellioeducation.com
99
// @grant none
10+
// @license AGPL-3.0
1011
// ==/UserScript==
1112

1213
(function() {
13-
window.addEventListener('DOMContentLoaded', function() {
14+
window.addEventListener('load', function() {
1415
var blurs = Array.from(document.getElementsByClassName('bg-blur'));
1516
blurs.forEach(function(blur) {
1617
blur.remove();
1718
});
1819
}, false);
19-
})();
20+
})();

0 commit comments

Comments
 (0)