您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
// ==UserScript== // @name 放牧的风-将每条转换成url // @namespace http://tampermonkey.net/ // @version 0.3 // @description try to take over the world! // @author chenngLee // @match https://www.youneed.win/free-ss // @grant none // ==/UserScript== (function() { function utf8ToBase64(str){ return btoa(unescape(encodeURIComponent(str))); } var s2 = document.querySelectorAll("#post-box > div > section > div > table > tbody > tr") var ss_LinkList = []; for (var i=0; i<s2.length; i++) { ss_LinkList.push('ss://'+utf8ToBase64((s2[i].children[3].innerText+':'+s2[i].children[2].innerText+'@'+s2[i].children[0].innerText+':'+s2[i].children[1].innerText ))); } console.log(ss_LinkList.join('\n')) alert("请按F12,查看console") })();