当前位置:首页 » 网页前端 » 火爆猴脚本
扩展阅读
webinf下怎么引入js 2023-08-31 21:54:13
堡垒机怎么打开web 2023-08-31 21:54:11

火爆猴脚本

发布时间: 2022-08-10 12:03:11

㈠ Greasemonkey这款脚本文件,求网友朋友提供一下,谢谢!

我有一份中文破解版的软件希望可以帮助你

使用教程

1、首先下载火狐浏览器,安装成功后用火狐浏览器打开链接,界面如下 然后搜索GreaseMonkey。

使用教程1

2、搜索结果,图标是个小猴子,然后添加到火狐浏览器,成功后需要重启浏览器。

使用教程2

3、添加成功后就会出现在右上角。

使用教程3

4、或者在这里查看插件是否安装成功。

点击下载Greasemonkey(火狐油猴子脚本)

㈡ 油猴安装的脚本怎么卸载呢

for chrome

找到浏览器里的“扩展程序”选择“油猴”,有一个“详细信息”

点开之后在右边的选项卡里找到“已安装的脚本”然后就可以看到让你不爽的脚本赶紧点删除就可以了

㈢ 洛克王国雷神刷历练脚本

不知

㈣ 谁有火狐油猴子脚步啊,求一个油猴脚本!

前言:此版本的软件安装包附加破解教程我可以给您一份,不过仅供个人使用,切勿传播,希望可以帮助您

使用教程

1、首先下载火狐浏览器,安装成功后用火狐浏览器打开链接,界面如下 然后搜索GreaseMonkey。

2、搜索结果,图标是个小猴子,然后添加到火狐浏览器,成功后需要重启浏览器。

3、添加成功后就会出现在右上角。

4、或者在这里查看插件是否安装成功。

点击下载火狐油猴子

㈤ 求一个浏览器看视频时屏蔽广告的serscripts

这是去视频广告的,我是复制傲游浏览器的暴利猴脚本:
// ==UserScript==
// @name 去视频广告
// @author Anonymous
// @description 通过替换swf播放器的方式来解决优酷的黑屏广告+Bilibili黑科技 In God,We Turst.
// @version 1.366.2
// @namespace http://userscripts.org/users/Kawaiiushio
// @updateURL https://userscripts.org/scripts/source/162286.meta.js
// @downloadURL https://userscripts.org/scripts/source/162286.user.js
// @icon http://extensiondl.maxthon.cn/skinpack/17276781/1366787326/icons/icon_48.png
// @include http://*/*
// @include https://*/*
// ==/UserScript==

/*
* === 说明 ===
* 本脚本参考http://bbs.kafan.cn/thread-1514537-1-1.html 感谢卡饭大神
* Chrome用户也可以使用Adkill and Media download这个扩展
* 此脚本设计修改人员OpenGG Harv xplsy 15536900 yndoc KawaiiUshio 5B4B铅笔
* Bilibili黑科技由FireAway提供 参考:http://userscripts.org/scripts/show/165424
* Opera兼容部分由Gerald修改
* In God,We Trust.
* THX.
*/

/*
* Love Jiani
*/
(function() {
Function.prototype.bind = function() {
var fn = this, args = Array.prototype.slice.call(arguments), obj = args.shift();
return function() {
return fn.apply(obj, args.concat(Array.prototype.slice.call(arguments)));
};
};

function YoukuAntiAds() {}
YoukuAntiAds.prototype = {
_players: null,
_rules: null,
_done: null,
get players() {
if(!this._players) {
this._players = {
'youku': 'http://lovejiani.cdn.app.com/kafan/loader.swf',
'ku6': 'http://lovejiani.cdn.app.com/kafan/ku6.swf',
'iqiyi': 'http://lovejiani.cdn.app.com/kafan/iqiyi.swf',
'iqiyi5': 'http://lovejiani.cdn.app.com/kafan/iqiyi5.swf',
'tudou': 'http://lovejiani.cdn.app.com/kafan/tudou.swf',
'tudou_olc': 'http://lovejiani.cdn.app.com/kafan/olc_8.swf',
'tudou_sp': 'http://lovejiani.cdn.app.com/kafan/sp.swf',
'letv': 'http://lovejiani.cdn.app.com/kafan/letv.swf'
};
}
return this._players;
},
get rules() {
if(!this._rules) {
this._rules = {
'youku': {
'find': /^http:\/\/static\.youku\.com(\/v[\d\.]+)?\/v\/swf\/(loader|q?player[^\.]*)\.swf/i,
'replace': this.players['youku']
},
'youku_out': {
'find': /^http:\/\/player\.youku\.com\/player\.php\/.*sid\/([\w=]+).*(\/v)?\.swf.*/i,
'replace': this.players['youku'] + '?showAd=0&VideoIDS=$1'
},
'ku6': {
'find': /^http:\/\/player\.ku6cdn\.com\/default\/.*\/\d+\/player\.swf/i,
'replace': this.players['ku6']
},
'ku6_out': {
'find': /^http:\/\/player\.ku6\.com\/(inside|refer)\/([^\/]+)\/v\.swf.*/i,
'replace': this.players['ku6'] + '?vid=$2'
},
'letv1': {
'find': /^http:\/\/.*letv[\w]*\.com\/[^\.]*\/.*player\/((?!Live).*)Player[^\.]*\.swf/i,
'replace': this.players['letv']
},
'letv2': {
'find': /^http:\/\/.*letv[\w]*\.com\/.*player[^\.]*\.swf\?v_list=[\d]/i,
'replace': this.players['letv']
},
'letv3': {
'find': /^http:\/\/.*letv[\w]*\.com\/.*\/v_list=[\d]*\/\.swf/i,
'replace': this.players['letv']
},
'iqiyi': {
'find': /^http:\/\/www\.iqiyi\.com\/player\/\d+\/player\.swf/i,
'replace': this.players['iqiyi']
},
'iqiyi_out': {
'find': /^http:\/\/(player|dispatcher)\.video\.i?qiyi\.com\/(.*[\?&]vid=)?([^\/&]+).*/i,
'replace': this.players['iqiyi5'] + '?vid=$3'
},
'tudou': {
'find': /^http:\/\/js\.tudouui\.com\/.*player[^\.]*\.swf/i,
'replace': this.players['tudou']
},
'tudou_out': {
'find': /^http:\/\/www\.tudou\.com\/.*(\/v\.swf)?/i,
'replace': this.players['tudou_olc'] + '?tvcCode=-1&swfPath=' + this.players['tudou_sp']
}
}
}
return this._rules;
},
get done() {
if(!this._done) {
this._done = new Array();
}
return this._done;
},
initPreHandlers: function() {
this.rules['iqiyi']['preHandle'] = function(elem, find, replace, player) {
if(document.querySelector('span[data-flashplayerparam-flashurl]')) {
replace = this.players['iqiyi5'];
}
this.reallyReplace.bind(this, elem, find, replace)();
}
this.rules['tudou_out']['preHandle'] = function(elem, find, replace, player) {
var fn = this;
var isFx = /firefox/i.test(navigator.userAgent);
GM_xmlhttpRequest({
method: isFx ? 'HEAD' : 'GET',
url: isFx ? player : 'https://query.yahooapis.com/v1/public/yql?format=json&q=' + encodeURIComponent('use"https://haoutil.googlecode.com/svn/trunk/firefox/tudou_redirect.yql.xml" as tudou; select * from tudou where url="' + player + '" and referer="' + window.location.href + '"'),
onload: function(response) {
var finalUrl = (isFx ? response.finalUrl : response.responseText);
var match = finalUrl.match(/(iid|youkuid|resourceid|autoplay|snap_pic)=[^&]+/ig);
if(match && !/error/i.test(finalUrl)) {
replace += '&' + match.join('&');
fn.reallyReplace.bind(fn, elem, find, replace)();
}
}
});
}
},
addAnimations: function() {
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = 'object,embed{\
-webkit-animation-ration:.001s;-webkit-animation-name:playerInserted;\
-ms-animation-ration:.001s;-ms-animation-name:playerInserted;\
-o-animation-ration:.001s;-o-animation-name:playerInserted;\
animation-ration:.001s;animation-name:playerInserted;}\
@-webkit-keyframes playerInserted{from{opacity:0.99;}to{opacity:1;}}\
@-ms-keyframes playerInserted{from{opacity:0.99;}to{opacity:1;}}\
@-o-keyframes playerInserted{from{opacity:0.99;}to{opacity:1;}}\
@keyframes playerInserted{from{opacity:0.99;}to{opacity:1;}}';
document.getElementsByTagName('head')[0].appendChild(style);
},
animationsHandler: function(e) {
if(e.animationName === 'playerInserted') {
this.replace(e.target);
}
},
replace: function(elem) {
if(this.done.indexOf(elem) != -1) return;
this.done.push(elem);

var player = elem.data || elem.src;
if(!player) return;

var i, find, replace, isReplacing = false;
for(i in this.rules) {
find = this.rules[i]['find'];
if(find.test(player)) {
replace = this.rules[i]['replace'];
if('function' === typeof this.rules[i]['preHandle']) {
isReplacing = true;
this.rules[i]['preHandle'].bind(this, elem, find, replace, player)();
}
if(!isReplacing) {
this.reallyReplace.bind(this, elem, find, replace)();
}
break;
}
}
},
reallyReplace: function(elem, find, replace) {
elem.data && (elem.data = elem.data.replace(find, replace)) || elem.src && ((elem.src = elem.src.replace(find, replace)) && (elem.style.display = 'block'));
this.reloadPlugin(elem);
},
reloadPlugin: function(elem) {
var nextSibling = elem.nextSibling;
var parentNode = elem.parentNode;
parentNode.removeChild(elem);
var newElem = elem.cloneNode(true);
this.done.push(newElem);
if(nextSibling) {
parentNode.insertBefore(newElem, nextSibling);
} else {
parentNode.appendChild(newElem);
}
},
init: function() {
this.initPreHandlers();

var handler = this.animationsHandler.bind(this);

document.body.addEventListener('webkitAnimationStart', handler, false);
document.body.addEventListener('msAnimationStart', handler, false);
document.body.addEventListener('oAnimationStart', handler, false);
document.body.addEventListener('animationstart', handler, false);

this.addAnimations();
}
};

new YoukuAntiAds().init();
})();

㈥ 火狐油脚猴插件要看网页的隐藏内容应装什么脚本

根据网站不同,脚本不同,没有通用的,如果是论坛那种隐藏或者回复可见,是需要服务器端验证返回数据的,客户端再怎么做都无解。

㈦ 为什么用暴力猴安装的本地脚本不好使

引用"sapalatu".user.js的拖拽安装。.js的自己在扩展中新建脚本复制安装。建议只用来管理Greasemonkey脚本,全局JavaScript还是用OP原生加载。

㈧ 手机新版火狐浏览器如何安装油猴脚本管理器

新版的火狐浏览器只有几个自带的插件可以安装,中国版就不说了,就连美国和国际版的都只有几个插件,至于你说的那个猴脚本管理器是没有的。不过这里有个基于火狐浏览器改编的浏览器你可以试试,叫“Iceraven浏览器”,和安卓火狐浏览器界面基本一样,更重要的是支持百多个插件安装,里面就有“油猴”,“暴力猴”,“Adblock”,“uBlock Origin”等等好用的插件。在右下角点击,附加组件里就能直接下载使用,不用在网上找。最重要的是还支持手机电脑同步,不过这里同步,里电脑上的装国际版才行。我就是这样用的,电脑也换成了国际版火狐,方便收藏夹,密码等等,同步起来应用也方便的多。最后还有个手机浏览器也支持插件叫“kiwi浏览器”,不过他操作比较麻烦点,的自己在网上寻找搜索Chrome插件下载到手机才能装,也不能同步和自带更新插件等功能。以上就是我的使用经验。

㈨ 为什么我的暴力猴脚本会突然全部消失

现在都说什么BT脚本,其实很多人不了解脚本,脚本不能根本上改变你的水平,你用的脚本标榜所谓的暴力脚本,其实和网上随便下的脚本差不到哪去因为你用新脚本了,玩时注意力就有所集中,发挥自然比平时好些,你用段时间后就会觉得没什么了,比如我一直用右手拿枪,偶尔换了左手拿枪,感觉发挥就好一点,打一会就觉得没什么了现在大多数人都用脚本,可是菜鸟依然很多,你在网上随便找个脚本就无敌了??那些收费脚本也就那回 事脚本有好出是当然的,比如准星静止、手臂开枪是不震动等等,通过改网络参数等弹道感觉上还有所加强,不过这些不能左右一个CSER的水平!!! 现在大家都很讨厌作弊的 请不要作弊 你这样能得到什么呢?你给另外的CS玩家又带来了什么呢?现在反作弊器停止更新了 网上的作弊烂人简直多得数不完了 我建个F 整整一晚上都再重复T人,刷新的动作 现在作弊的真TMD猖狂 我简直伤透心了!说严重点 这是一个人的素质问题!作弊就是低素质!鄙视作弊 请你练好枪法再去想想怎么虐人吧!!CS真的是一种精神

㈩ 油猴脚本用暴力猴还是tampermonkey好些

目前在新版edge上寻找好用的脚本管理工具。暴力猴和tampermonkey都尝试过,功能一样,只是管理界面稍有不同。哪个好用看自己的使用习惯。
区别上,
1、暴力猴提供两个脚本下载网站(GreasyFork 、OpenUserJS);tampermonkey提供四个下载网站(GreasyFork 、OpenUserJS、Userscripts.org、GitHub/Gist)。
2、暴力猴下,进入已安装脚本编辑模式需要点击脚本名称下的“编辑”;tam-key直接点击脚本名字。