Greasy Fork

Greasy Fork is available in English.

放牧的风-获取免费ss的url

try to take over the world!

当前为 2019-06-24 提交的版本,查看 最新版本

// ==UserScript==
// @name         放牧的风-获取免费ss的url
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.youneed.win/free-ss
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
var s2 = document.querySelectorAll("#post-box > div > section > table > tbody > tr")
var ss_LinkList = [];
for (var i=0; i<s2.length; i++) {
ss_LinkList.push('ss://'+window.btoa(encodeURIComponent(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")

})();