您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
// ==UserScript== // @name 网络画板链接分享脚本 // @namespace http://tampermonkey.net/ // @version 0.3 // @description try to take over the world! // @author You // @match *://www.netpad.net.cn/svg.html* // @grant none // ==/UserScript== (function () { ("use strict"); // 感谢 @flaribbit 的帮助,这是他的 GitHub 地址 https://github.com/flaribbit // SICP 的思想无处不在 var len = "https://www.netpad.net.cn/svg.html#posts/".length; var id = document.URL.slice (len); function AddLink (name, web) { var target = document.querySelector ("div.files"); var el = document.createElement ("div"); var input = document.createElement ("input"); target.parentNode.insertBefore (el, target); target.parentNode.insertBefore (input, target); input.style = "border: none;width: 1px;z-index: -1;"; el.className = "export"; el.innerText = name; el.style = "cursor: pointer;"; el.onclick = function () { prompt ("Ctrl+C", web); }; } AddLink ( "复制分享链接", "https://www.netpad.net.cn/resource_web/course/#/" + id ); AddLink ( "复制嵌入链接", '<iframe width="772" height="434" src="https://www.netpad.net.cn/thirdInnerPad.html?id=' + id + "#posts/" + id + '"frameborder="0"scrolling="auto"></iframe>' ); })();