@CycleBai快捷文本转图片脚本 中发帖

// ==UserScript==
// @name 一键文本转图片
// @namespace https://iscyclebai.com
// @version 1.2
// @description 当按下 Alt+I 时, 自动将选中的文字转为图片复制到剪贴板
// @author Cycle Bai
// @match *://*/*
// @grant none
// ==/UserScript==

(function() {
'use strict';

document.addEventListener('keydown', async function(event) {
if (event.altKey && event.key.toLowerCase() ===...