您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Links to member profiles on Streamate's Blocked Customers admin page for models have been broken long enough! This simple script adds the missing userid back to the broken links so they work as expected again.
// ==UserScript== // @name Streamate Model Blacklist Fix // @namespace https://greasyfork.org/en/users/870933 // @version 0.3 // @description Links to member profiles on Streamate's Blocked Customers admin page for models have been broken long enough! This simple script adds the missing userid back to the broken links so they work as expected again. // @author LintillaTaylor // @match https://legacy.streamatemodels.com/smblock.php* // @grant none // ==/UserScript== let rows = document.querySelectorAll('tbody tr'); for (let i = 0; i < rows.length; i++) { rows[i].querySelector('td:nth-child(2) a').href += rows[i].querySelector('td:nth-child(3) input:first-child').name.split(/[\[\]]/)[1]; }