當前位置:首頁 » 網頁前端 » 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設置裡面阻止窗口彈出選項選定

❿ 關於廣告腳本

設置免打擾