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

app免看广告脚本

发布时间: 2022-02-04 13:53:33

❶ 请问谁有自动阅读脚本可以读多个新闻app,千万不要是病毒

我这里有规模工作室,包括运营环境,软件,账号,技术支撑等成体系服务。

❷ 有没有什么浏览器不禁用动态脚本就能阻止右下角弹出的广告小窗口的

你换个世界之窗浏览器,在工具里面设置广告过滤,自动弹窗,页面自动漂浮元素下的子选项都勾选,我用了之后,反正网易那广告是没有弹出来了,你可以试试

❸ 有没有手机自动阅读广告赚钱的软件

现在没有自动阅读赚钱,都是需要你点新闻读给你金币兑换现金功能,比如头条极速版,趣头条,好看,淘热点,这些看新闻软件都是比较靠谱的,而且提现金额马上到,很不错的一个赚钱软件。

❹ 求一个浏览器看视频时屏蔽广告的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();
})();

❺ 广告脚本一分钟

摘要 你好朋友,很高兴能回答您的问题。请您详细描述一下你的问题。谢谢。

❻ 如何用云手机自动挂机浏览广告

自动挂机浏览广告就需要另一个和云手机密不可分的东西,那就是脚本。云手机的内置应用商店里有着海量的脚本,对应着各种APP。当然,如果自己有条件可以自己写脚本上传到云手机中使用。云手机你可以咨询下瑞驰,他们技术还不错

❼ 那个有手机广告分镜头脚本

分镜头脚本样例 中国移动通信网络电视广告创意脚本 篇 名:《潜水篇》30秒 主 题:无论你身在何处,中国移动都能带给你意想不到的 镜号 景别 镜头运用 画 面内 容 时间 字幕 画外音 音效 1 全景 俯拍 平静的海面,漂荡着一艘豪华游艇。一妙龄女郎悠闲的倚在船舷 上,望着远处的海水。 3 2 近景 切换 女郎从茶几上拿起手机,修长的手指轻盈地拨着号码,凑近耳旁 倾听, 2 3 中景 切换 宁静神秘的海底世界,一男子在悠然的潜水,欣喜的观看着在身 边游来游去的各式各样的海中生物。 2 4 特写 突然从男子腰间传出的手机呼叫声,打破了海底的宁静。 1 5 中景 电脑特技 周围的鱼儿都左顾右盼,嘴巴一张一翕,不停的吐着汽泡儿,好 像在商量着什么似的。 2 6 近景 推 鱼儿都发现了男子腰间那一闪一闪的发光的银色物体 2 7 近景 拉 男子从腰间取下手机,按下免提功能键接听来电。 2 8 特写 电脑特技 鱼儿怒气冲冲地朝男子包抄过来,像离弦的箭一样从四面八方射 向男子。 3 9 中景 切换 男子发现周围的鱼都朝他冲过来,吓得连忙把手机仍了 2 10 特写 手机中传来女郎娇滴滴的问候声。“喂!你在海底下还好吗?我 想你,快上来吧!” 3 喂!你在海底下还好吗?我想你,快上来吧! 11 近景 电脑特技 一条大鲨鱼用嘴接住手机,奋力跃出了水面,其它的鱼也相跟着 纷纷跃出了水面。 3 12 大特写 切换 蔚蓝的海面上跃起一只银色的海豚,海豚在妙龄女郎面前摆了个 优美的“S”型舞姿。 3 无论你身在何处中国移动都能带给意想不到的。 13 特写 淡出 舞姿定格,蓝底白纹的中国移动标志从舞姿中突现出来。 2 沟通从心开始中国移动通信

❽ 求一个自动检测广告并关闭广告的脚本,什么广告都能关闭的那种

摘要 广告关闭很简单的

❾ 这类网页广告如何屏蔽设置或脚本请附详细方法,多谢!

将ie设置里面阻止窗口弹出选项选定

❿ 关于广告脚本

设置免打扰