Skip to content

Commit 5e62baa

Browse files
authored
v0.5: 修复错误的热键
1 parent 1e58dfd commit 5e62baa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

BilibiliEmojisExtractor.user.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// @name Bilibili Emojis Extractor
33
// @name:zh 哔哩哔哩表情提取
44
// @namespace https://github.com/jc3213/userscript
5-
// @version 0.4
5+
// @version 0.5
66
// @description Extract official Emojis in users' comments
77
// @description:zh 提取评论区的官方表情的图片
88
// @author jc3213
@@ -102,7 +102,7 @@ function extractEmoji() {
102102
}
103103

104104
document.addEventListener('keydown', (event) => {
105-
if (event.altlKey && event.shiftKey && event.code === 'KeyE') {
105+
if (event.altKey && event.shiftKey && event.code === 'KeyE') {
106106
extractEmoji();
107107
}
108108
});

0 commit comments

Comments
 (0)