Generate the QR code of the address of the current webpage (URL), which is convenient for mobile phone scanning
< Feedback on 网页URL二维码生成
添加了下快捷键直接生成二维码:
window.addEventListener('keydown', (e) => { // [Alt + Shift + Q] if (e.key === 'Q' && e.altKey && e.shiftKey) { urlQRCode(); } });
1、脚本在部分页面加载较慢,尝试让更早启动:
// @run-at document-start
2、生成二维码后的重新生成按钮无效
Sign in to post a reply.
添加了下快捷键直接生成二维码: