您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Easily comment with images and links
当前为
// ==UserScript== // @name Images and Links // @version 0.4.1.2 // @description Easily comment with images and links // @author otro_user_gil // @include http://www.steamgifts.com/* // @include https://steamgifts.com/* // @include http://*.steamgifts.com/* // @include https://*.steamgifts.com/* // @grant none // @namespace https://gf.qytechs.cn/users/15121 // ==/UserScript== var buttons = "<div style=\"position: relative; width: 65px; float: right; margin-left: 15px;\"> <input type=\"button\" value=\"Image\" onClick=\"image_up\" style=\"position: absolute; cursor:pointer; margin-top: -14px;\"/> <input type=\"button\" onClick=\"link_up\" value=\"Url\" style=\"margin-top: -14px; position: absolute; cursor:pointer; margin-left: 80px;\"/> </div>"; $(".align-button-container").append(buttons); function image_up(){ var img = prompt("Insert the link of your image here", ""); var link = ""; if(img === null || img === ""){ return img; }else{ var textarea = document.getElementsByName("description"); for(var i=0; i< textarea.length; i++){ textarea[i].value = textarea[i].value + link; } } } function url_up(){ var link=prompt("Insert the URL link here",""); if(link===null||link===""){ return link; } else{ var texto=prompt("Custom Text",""); if(texto===null||texto===""){ texto=link;var enlace="["+texto+"]("+link+")"; var textarea=document.getElementsByName("description"); for(var i=0;i<textarea.length;i++){ textarea[i].value=textarea[i].value+enlace;} } else{ var enlace="["+texto+"]("+link+")"; var textarea=document.getElementsByName("description"); for(var i=0;i<textarea.length;i++){ textarea[i].value=textarea[i].value+enlace; } } } }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址