We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e58dfd commit 5e62baaCopy full SHA for 5e62baa
1 file changed
BilibiliEmojisExtractor.user.js
@@ -2,7 +2,7 @@
2
// @name Bilibili Emojis Extractor
3
// @name:zh 哔哩哔哩表情提取
4
// @namespace https://github.com/jc3213/userscript
5
-// @version 0.4
+// @version 0.5
6
// @description Extract official Emojis in users' comments
7
// @description:zh 提取评论区的官方表情的图片
8
// @author jc3213
@@ -102,7 +102,7 @@ function extractEmoji() {
102
}
103
104
document.addEventListener('keydown', (event) => {
105
- if (event.altlKey && event.shiftKey && event.code === 'KeyE') {
+ if (event.altKey && event.shiftKey && event.code === 'KeyE') {
106
extractEmoji();
107
108
});
0 commit comments