您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
PornHub No Subscribe Refresh
// ==UserScript== // @name PornHub NoSubscribeRefresh // @namespace PHNoSubscribeRefresh // @version 1.1.0 // @description PornHub No Subscribe Refresh // @author Runterya // @homepage https://github.com/Runteryaa // @match *://*.pornhub.com/* // @match *://*.pornhubpremium.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=pornhub.com // @grant none // @license MIT // @compatible chrome // @compatible edge // @compatible firefox // @compatible opera // @compatible safari // ==/UserScript== console.log("PHNoSubscribeRefresh") window.addEventListener('load', () => { function checkAndUpdateRefreshStatus() { var elements = document.querySelectorAll('[data-refresh="1"]'); elements.forEach(function(element) { element.setAttribute('data-refresh', '0'); }); } checkAndUpdateRefreshStatus() setInterval(checkAndUpdateRefreshStatus, 1000); });