// ==UserScript== // @name 支持私人需求功能定制开发。微信公众号编辑器模板一键导入,支持各大微信编辑器平台。通用于各大自媒体图文平台,包括但不限于微信公众号,B站,bilibili,今日头条,抖音,西瓜视频,知乎等等…… // @namespace https://www.1024net.tech/ // @namespace https://www.lovemake.love/ // @version 2024.01.25.113523 // @description I try to take over the world! // @author Kay // @match https://mp.weixin.qq.com/* // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js // @require https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.11/clipboard.min.js // @icon https://aimg8.dlssyht.cn/u/1533835/ueditor/image/767/1533835/1633159205592221.png // @grant GM_xmlhttpRequest // @grant GM_setValue // @grant GM_getValue // @connect gitee.com // @connect gitlab.com // @connect * // @downloadURL none // ==/UserScript== (function () { 'use strict'; // Your code here... GM_xmlhttpRequest({ method: "GET", url: 'https://a.com', onload: function (response) { let webText = response.responseText; GM_setValue("gethtml", webText); } }); const url = location.href; let logo = "https://aimg8.dlssyht.cn/u/1533835/ueditor/image/767/1533835/1696746563185428.png"; let popup = `

请输入订单编号或本地导入

* 温馨提示:订单编号首次使用后24小时后失效,请于24小时内保存好草稿箱。

`; $("body").append(popup); $("#divx-wrapper,#divx").css("display", "none"); let style = ` #edui0x { max-height: 22px; margin: auto 4px; display: inline-block; } #edui0x img { max-width: 18px; margin-top: 2px; } #divx-wrapper { width: 100vw; height: 100vh; background-color: rgba(0, 0, 0, 0.5); z-index: 9999; position: fixed; top: 0; left: 0; } #divx { width: 800px; height: 300px; margin: auto; background-color: #fff; z-index: 10000; position: absolute; top: 0; left: 0; bottom: 0; right: 0; border-radius: 10px; text-align: center; padding-bottom: 30px; } #h1x { margin: 30px auto 20px auto; } #orderx { width: 80%; height: 30px; border-radius: 3px; border-width: 1px; margin-bottom: 10px; } #ireader { margin-bottom: 10px; } #errx { margin: 10px auto 30px auto; color: red; } #buttonx1, #buttonx2 { width: 100px; height: 40px; background-color: #07c160; color: white; border-radius: 5px; margin-right: 20px; } #buttonx2 { margin-right: 0; } `; $("#stylex").html(style); function filleditor(html) { $("#ueditor_0").contents().find("body").html(html); $("#edui1_contentplaceholder").css("display", "none"); $("#divx-wrapper,#divx").css("display", "none"); GM_deleteValue("gethtml"); } if (url.indexOf("mp.weixin.qq.com") !== -1) { let logox = `
`; $("#js_toolbar_0").append(logox); $("#edui0x img").attr("src", logo); $("#edui0x").click(function () { $("#divx-wrapper,#divx").css("display", "block"); $("#orderx").val(""); $("#errx").html(""); $("#orderx").click(function () { $("#errx").html(""); }); $("#buttonx1").click(function () { let a = $("#orderx").val(); let b = GM_getValue("gethtml"); let c = Date.now(); let d = c - parseInt(a.split("T")[1]); if (b.indexOf("T") != 0) { $("#errx").html('查询出错,请联系客服!  QQ: 626528275(微信同号)'); } else { if (a == "T10000") { let templatehtml = ""; filleditor(templatehtml); } else if (b.indexOf(a) !== -1 && d < 86400000) { let templatehtml = $.trim(b.split(a)[1]); filleditor(templatehtml); } else { $("#errx").html("对不起,您输入的订单编号无效,请联系客服!
QQ: 626528275(微信同号)"); GM_deleteValue("gethtml"); } } }); $("#buttonx2").click(function () { $("#divx-wrapper,#divx").css("display", "none"); }); }); } })(); /*2024.01.25.113523 - Line : 188*/