We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 266eb8e commit 26e881fCopy full SHA for 26e881f
1 file changed
script.user.js
@@ -1,7 +1,7 @@
1
// ==UserScript==
2
// @name JPDB Userscript (6a67)
3
// @namespace http://tampermonkey.net/
4
-// @version 0.1.191
+// @version 0.1.192
5
// @description Script for JPDB that adds some styling and functionality
6
// @match *://jpdb.io/*
7
// @grant GM_addStyle
@@ -2923,7 +2923,7 @@
2923
document.addEventListener('keydown', function (event) {
2924
if (event.key === 'c') {
2925
document.querySelectorAll('.sentence-translation').forEach((element) => {
2926
- element.classList.toggle('unblur');
+ element.click();
2927
});
2928
}
2929
0 commit comments