您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypass the clicking on netdna-storage.
// ==UserScript== // @name netdna-storage bypass clicker // @namespace https://github.com/JonnyShuali/netdna-storage-click-bypass // @description Bypass the clicking on netdna-storage. // @version 7 // @include http://www.netdna-storage.com/f/* // @include http://www.netdna-storage.com/step/* // @include http://netdna-storage.com/f/* // @include http://netdna-storage.com/step/* // @include https://www.netdna-storage.com/f/* // @include https://www.netdna-storage.com/step/* // @include https://netdna-storage.com/f/* // @include https://netdna-storage.com/step/* // @run-at document-start // @grant GM.xmlHttpRequest // ==/UserScript== GM.xmlHttpRequest({ method: 'GET', url: window.location.href, onload: function(response) { var parser = new DOMParser(); var doc = parser.parseFromString(response.responseText, 'text/html'); if (doc === null) { return; } var g = doc.getElementsByClassName('plan-footer-item'); for (var i = 0; i < g.length; i++) { if (g[i].getAttribute('href')) { location.assign(g[i].getAttribute('href')); } } } });