search
HomeWeb Front-endHTML Tutorial92cc.com script: one-click like; one-click message board or reply; group private message; site-wide ad blocking; beautify 92cc.com song play page_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>

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
HTML: The Structure, CSS: The Style, JavaScript: The BehaviorHTML: The Structure, CSS: The Style, JavaScript: The BehaviorApr 18, 2025 am 12:09 AM

The roles of HTML, CSS and JavaScript in web development are: 1. HTML defines the web page structure, 2. CSS controls the web page style, and 3. JavaScript adds dynamic behavior. Together, they build the framework, aesthetics and interactivity of modern websites.

The Future of HTML: Evolution and Trends in Web DesignThe Future of HTML: Evolution and Trends in Web DesignApr 17, 2025 am 12:12 AM

The future of HTML is full of infinite possibilities. 1) New features and standards will include more semantic tags and the popularity of WebComponents. 2) The web design trend will continue to develop towards responsive and accessible design. 3) Performance optimization will improve the user experience through responsive image loading and lazy loading technologies.

HTML vs. CSS vs. JavaScript: A Comparative OverviewHTML vs. CSS vs. JavaScript: A Comparative OverviewApr 16, 2025 am 12:04 AM

The roles of HTML, CSS and JavaScript in web development are: HTML is responsible for content structure, CSS is responsible for style, and JavaScript is responsible for dynamic behavior. 1. HTML defines the web page structure and content through tags to ensure semantics. 2. CSS controls the web page style through selectors and attributes to make it beautiful and easy to read. 3. JavaScript controls web page behavior through scripts to achieve dynamic and interactive functions.

HTML: Is It a Programming Language or Something Else?HTML: Is It a Programming Language or Something Else?Apr 15, 2025 am 12:13 AM

HTMLisnotaprogramminglanguage;itisamarkuplanguage.1)HTMLstructuresandformatswebcontentusingtags.2)ItworkswithCSSforstylingandJavaScriptforinteractivity,enhancingwebdevelopment.

HTML: Building the Structure of Web PagesHTML: Building the Structure of Web PagesApr 14, 2025 am 12:14 AM

HTML is the cornerstone of building web page structure. 1. HTML defines the content structure and semantics, and uses, etc. tags. 2. Provide semantic markers, such as, etc., to improve SEO effect. 3. To realize user interaction through tags, pay attention to form verification. 4. Use advanced elements such as, combined with JavaScript to achieve dynamic effects. 5. Common errors include unclosed labels and unquoted attribute values, and verification tools are required. 6. Optimization strategies include reducing HTTP requests, compressing HTML, using semantic tags, etc.

From Text to Websites: The Power of HTMLFrom Text to Websites: The Power of HTMLApr 13, 2025 am 12:07 AM

HTML is a language used to build web pages, defining web page structure and content through tags and attributes. 1) HTML organizes document structure through tags, such as,. 2) The browser parses HTML to build the DOM and renders the web page. 3) New features of HTML5, such as, enhance multimedia functions. 4) Common errors include unclosed labels and unquoted attribute values. 5) Optimization suggestions include using semantic tags and reducing file size.

Understanding HTML, CSS, and JavaScript: A Beginner's GuideUnderstanding HTML, CSS, and JavaScript: A Beginner's GuideApr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

The Role of HTML: Structuring Web ContentThe Role of HTML: Structuring Web ContentApr 11, 2025 am 12:12 AM

The role of HTML is to define the structure and content of a web page through tags and attributes. 1. HTML organizes content through tags such as , making it easy to read and understand. 2. Use semantic tags such as, etc. to enhance accessibility and SEO. 3. Optimizing HTML code can improve web page loading speed and user experience.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Have Crossplay?
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version