🏠 Home 

手机看虎扑

不下载APP看虎扑


安装此脚本?
// ==UserScript==
// @name         手机看虎扑
// @namespace    http://tampermonkey.net/
// @version      0.32
// @description  不下载APP看虎扑
// @author       toypoy
// @match         *://m.hupu.com/*
// @icon          https://w4.hoop#####.com.cn/images/m/favicon_new.ico
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
// Your code here...
console.log('注入开始~~~~~~')
var window_url = window.location.href;
var website_host = window.location.host;
console.log(window_url)
console.log(website_host)
document.cookie='sc=2;';
window.addEventListener("load", function(){
setTimeout(function() {
//移除底部打开APP
document.getElementsByClassName('open-hupu')[0].remove();
},200);
setTimeout(function(){
//点击展开全部回复
document.getElementsByClassName('expand-all-replies')[0].click();
},500)
});
})();