您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
adds download button to gpop levels
// ==UserScript== // @name Gpop Download Level // @namespace http://tampermonkey.net/ // @version 0.1 // @description adds download button to gpop levels // @author Commensalism // @match http*://gpop.io/play/* // @icon https://www.google.com/s2/favicons?sz=64&domain=gpop.io // @grant none // @license MIT // ==/UserScript== setTimeout(function() { let script = document.head.innerHTML.replace(/[\S\s]*"notes":(\[[\S\s]*\]),"minleaderboard"[\S\s]*/g, "$1") let link = document.createElement("a") document.querySelector(".playpage-left-date").after(link) link.outerHTML = `<a download="level.gpop" href="data:text/plain;charset=utf-8,${encodeURIComponent(script)}" class="gbutton playpage-comment-submit">DOWNLOAD</a>` }, 1000);