网页URL二维码生成

Generate the QR code of the address of the current webpage (URL), which is convenient for mobile phone scanning

< Feedback on 网页URL二维码生成

Question/comment

§
Posted: 2024-11-16
Edited: 2024-11-16

添加了下快捷键直接生成二维码:

    window.addEventListener('keydown', (e) => { // [Alt + Shift + Q]
      if (e.key === 'Q' && e.altKey && e.shiftKey) {
        urlQRCode();
      }
    });
§
Posted: 2024-11-16

1、脚本在部分页面加载较慢,尝试让更早启动:

// @run-at       document-start

2、生成二维码后的重新生成按钮无效

Post reply

Sign in to post a reply.