搜尋
首頁web前端html教學92cc.com脚本:一键点赞;一键留言板或回复;群发私信;全站广告拦截;美化92cc.com歌曲播放页面_html/css_WEB-ITnose

// ==UserScript==// @name           92cc.com重排版// @namespace      gsf@92cc.com// @author	       xinggsf~gmail。com// @description    一键点赞;一键留言板或回复;群发私信;全站广告拦截;美化92cc.com歌曲播放页面// @description:en Set css sytle on 92cc.com site// @license        GPL version 3// @include        http://*.92cc.com/*// @homepageURL    https://greasyfork.org/scripts/6562// @updateURL       https://greasyfork.org/scripts/6562/code/92cccom.user.js// @downloadURL     https://greasyfork.org/scripts/6562/code/92cccom.user.js// @version        0.2.23// @encoding       utf-8// @modified       01/28/2015// @run-at         document-body// @grant          none// ==/UserScript==window._92cc_Utils = {	jsAddrinfo: '嗨友必备眩酷神器\n??https://greasyfork.org/zh-CN/scripts/6562\n',	frCount: 0,	failGetList: false,	frList: [],	callBack: null,//响应事件	iTimer: null,	infoIndex: 0,	info:'',	page: 1,	pTimer: null,	praiseIndex: 0,//轮询计数		getInput: function (aTitle) {		var res = '',		x = '<div class="msg_dialog_send">
<div class="title"></div>
<div class="main">
<div class="message"><div id="fnote" contenteditable="true" class="send" name="fnote"></div></div>
<div id="emot_fnote" class="emot" to="fnote"></div>
</div>
</div><script type="text/javascript">setTimeout(null,99);$("#fnote").emotEditor({emot:true, newLine:true});</script>';		$.dialog({			id:'sendMsg', title: aTitle,			width:'360px', lock:true, content: x, okValue: '确认',			ok: function() {				var s, $fnote = $("#fnote");				s = $.trim($fnote.emotEditor("content"));				s = (s=="")? '请输入内容' :					(s.length > 470)? '您写多了!' : '';				if (s==='') {					res = $.trim($fnote.emotEditor("content"));					return true;				}				$.tipMessage(s, 1, 1000);				$fnote.focus();				return false;			},			cancelValue: '取消',			cancel:function() {}		});		return res;	},	//解析HTML	parseHtml: function(resp) {		var s, me = _92cc_Utils;		me.failGetList = false;		if (0 === me.frCount) {			s = resp.match(/<em title='\"总数量\"'>(\d+)/);			if (null === s) {				me.failGetList = true;				$.tipMessage('网络错误或解析失败!', 2, 3000);				return;			}			me.frCount = 0 | s[1];			//console.log(me.frCount);			if (0 === me.frCount) {				me.failGetList = true;				$.tipMessage('你没有加关注的朋友!', 2, 3000);				return;			}		}		s = resp.match(/\d+(?=\/" +?class="user_card">)/g);		//s = resp.split(/uid="(\d+)"/);		//if (0 === s.length)		if (!s) {			me.failGetList = true;			$.tipMessage('网络错误或解析失败!', 2, 3000);			return;		}		//console.log(s.length);		if (me.frList.length === 0)			me.frList = s;		else			s.push.apply(me.frList, s);		if (me.callBack) {			//me.callBack();			me.callBack = null;		}		if (me.frCount > me.frList.length) {			me.page += 1;			setTimeout('_92cc_Utils.getFriendList();', 1222);		}	},	getFriendList: function () {		if (this.frCount === 0 || this.frCount > this.frList.length) {			var s = (this.page === 1) ? "/relation?a=following" :				"/relation?a=following&currPage=" + this.page;			this.failGetList = false;			$.get(s, this.parseHtml, "html");		}	},	doPraise: function() {		var me = _92cc_Utils;		if (me.callBack) return;		if (me.frCount === me.praiseIndex ||		(me.failGetList && me.frList.length === me.praiseIndex)) {			clearInterval(me.pTimer);			me.pTimer = null;			$.tipMessage('已点赞了你所有的朋友!共 '+			me.praiseIndex + ' 个!', 0, 3000);			return;		}		if (0 === me.frList.length || me.frList.length === me.praiseIndex)			return;//等待数据		$.post("/user?a=doUserPraiseUpdate&uid="+ me.frList[me.praiseIndex]);		me.praiseIndex++;	},	praiseAllFriend: function() {		if (this.pTimer) {			$.tipMessage('今天已点赞!', 1, 3000);			return;		}		this.praiseIndex = 0;		this.getFriendList();		this.callBack = this.frCount === 0;		this.pTimer = setInterval(_92cc_Utils.doPraise, 100);		$.tipMessage('正在点赞!请稍候......', 0, 3000);	},	doSendInfo: function() {		var me = _92cc_Utils;		if (me.callBack) return;		if (me.frCount === me.infoIndex ||			(me.failGetList && me.frList.length === me.infoIndex))		{			clearInterval(me.iTimer);			me.iTimer = null;			$.tipMessage(me.infoIndex + ' 条私信已全部发出!', 0, 3000);			return;		}		if (0 === me.frList.length ||			me.frList.length === me.infoIndex)			return;//等待数据		$.post("/message?a=doMsgAdd",			  {"uid": me.frList[me.infoIndex], "note": me.info},			  "text"		);		me.infoIndex++;	},	sendAllInfo: function() {		if (this.iTimer) {			$.tipMessage('还有私信正在发送,请稍候......', 1, 3000);			return;		}		var s = this.getInput('请输入对所有朋友发送的私信');		if (s === '') return;		this.info = this.jsAddrinfo + s;		this.infoIndex = 0;		this.callBack = this.frCount === 0;		this.getFriendList();		//if (this.failGetList) return;		this.iTimer = setInterval(_92cc_Utils.doSendInfo, 200);		$.tipMessage('正在发送私信!请稍候......', 0, 3000);	},	init: function() {		this.getFriendList();	},	unInit: function() {		// for (let i in this.timers) {			// clearInterval(this.timers[i]);		// }	}};(function () {	var s, x, addr;	//要删除的元素列表,填入css选择器	s = ['script[src^="http://cbjs.baidu.com/"]',	'script[src^="http://cb.baidu.com/"]',	'script[src*=".baidustatic.com/"]',	'script[src*=".cnzz.com/"]',	'[id^="BAIDU_"]',	'#mp_banner_top', 	'.player > h1',	'.logo',	'.header+.play_content',	'.banner_text'];	//用原生API querySelectorAll加快速度	addr = s.forEach;	s.forEach(function (o) {		x = document.querySelectorAll(o);		if (x.length > 0)		addr.call(x, function (e) {			e.parentNode.removeChild(e);		});	});	s = null;	x = $('script[src*="/new/recommend/player"]');	if (x.length > 0) {		var src = x.attr('src');		//console.log(src);		//删除低效的内容生成JS,和可能已经生成的内容		s = x.parent().empty();		x = null;		$.get(src, function (res) {			var t = res.replace(/document\.writeln\("(.+?)"\);/g, '$1')			//删除多加在双引号前的斜线号				.replace(/\\"/g, '\"');			//console.log(t);			s.html(t); //替换内容生成JS			s = null;			//重新绑定事件			mPlayer.addList();			mPlayer.selectDanceAll();		}, 'text');	}	addr = document.URL.toLowerCase();	if (/^http:\/\/www\.92cc\.com\/p\d+\.html/.test(addr)) {		x = $(".play_content > .right_bot");		$(".play_content > .right").replaceWith(x);		x.css({			'right' : '0',			'float' : 'right'		});		x.children(':gt(0)').css('margin-top', '-12px');		x = null;		$(".header").css('height', '55px');		$(".content").css('top', '-15px');		$(".play_content").css('top', '-9px');		//删除div.banner内的广告;并用链式语法设定高度		$(".banner").empty().css('height', '3px');	}	//会员功能	else if (document.userInfo && 0 === addr	.indexOf('http://i.92cc.com/')) {	//添加按钮	}})();</em>

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
&lt; datalist&gt;的目的是什麼。 元素?&lt; datalist&gt;的目的是什麼。 元素?Mar 21, 2025 pm 12:33 PM

本文討論了html&lt; datalist&gt;元素,通過提供自動完整建議,改善用戶體驗並減少錯誤來增強表格。Character計數:159

&gt; gt;的目的是什麼 元素?&gt; gt;的目的是什麼 元素?Mar 21, 2025 pm 12:34 PM

本文討論了HTML&lt; Progress&gt;元素,其目的,樣式和與&lt; meter&gt;元素。主要重點是使用&lt; progress&gt;為了完成任務和LT;儀表&gt;對於stati

如何使用HTML5表單驗證屬性來驗證用戶輸入?如何使用HTML5表單驗證屬性來驗證用戶輸入?Mar 17, 2025 pm 12:27 PM

本文討論了使用HTML5表單驗證屬性,例如必需的,圖案,最小,最大和長度限制,以直接在瀏覽器中驗證用戶輸入。

&lt; iframe&gt;的目的是什麼。 標籤?使用時的安全考慮是什麼?&lt; iframe&gt;的目的是什麼。 標籤?使用時的安全考慮是什麼?Mar 20, 2025 pm 06:05 PM

本文討論了&lt; iframe&gt;將外部內容嵌入網頁,其常見用途,安全風險以及諸如對象標籤和API等替代方案的目的。

&lt; meter&gt;的目的是什麼。 元素?&lt; meter&gt;的目的是什麼。 元素?Mar 21, 2025 pm 12:35 PM

本文討論了HTML&lt; meter&gt;元素,用於在一個範圍內顯示標量或分數值及其在Web開發中的常見應用。它區分了&lt; meter&gt;從&lt; progress&gt;和前

HTML5中跨瀏覽器兼容性的最佳實踐是什麼?HTML5中跨瀏覽器兼容性的最佳實踐是什麼?Mar 17, 2025 pm 12:20 PM

文章討論了確保HTML5跨瀏覽器兼容性的最佳實踐,重點是特徵檢測,進行性增強和測試方法。

視口元標籤是什麼?為什麼對響應式設計很重要?視口元標籤是什麼?為什麼對響應式設計很重要?Mar 20, 2025 pm 05:56 PM

本文討論了視口元標籤,這對於移動設備上的響應式Web設計至關重要。它解釋瞭如何正確使用確保最佳的內容縮放和用戶交互,而濫用可能會導致設計和可訪問性問題。

我如何使用html5&lt; time&gt; 元素以語義表示日期和時間?我如何使用html5&lt; time&gt; 元素以語義表示日期和時間?Mar 12, 2025 pm 04:05 PM

本文解釋了HTML5&lt; time&gt;語義日期/時間表示的元素。 它強調了DateTime屬性對機器可讀性(ISO 8601格式)的重要性,並在人類可讀文本旁邊,增強Accessibilit

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

AI Hentai Generator

AI Hentai Generator

免費產生 AI 無盡。

熱工具

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

將Eclipse與SAP NetWeaver應用伺服器整合。

PhpStorm Mac 版本

PhpStorm Mac 版本

最新(2018.2.1 )專業的PHP整合開發工具

DVWA

DVWA

Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中

SublimeText3 英文版

SublimeText3 英文版

推薦:為Win版本,支援程式碼提示!

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

強大的PHP整合開發環境