软件介绍
Via,简洁轻快浏览器。堪称最小巧最强安卓极简浏览器,纯净无广告、界面简约、功能强大、麻雀虽小,五脏俱全!该手机迷你浏览器采用的webkit内核,支持定制主题、广告拦截、扩展脚本、保护隐私等功能。
【最良心】不偷取用户数据,权限只必要 【最快速】基于WebView内核, 原生体验 【最强悍】各种设置项自定义,为你专属
- 非常小巧,仅几百KB,该有的功能都有
- 隐私保护、隐私防追踪、自定义浏览器标识ua
- 支持广告拦截、自定义广告标记(可添加拦截规则)
- 支持沉浸式、支持定制主页风格、LOGO、搜索栏
- 支持HTML5、插件管理、下载插件、下载链接解析
- 书签可以登陆云同步,支持夜间模式,夜间模式、电脑模式、有图/无图模式
- 支持翻译网页、离线网页、保存网页、查看网页源码、网页资源嗅探、网页内查找等
- 支持自定义添加脚本
适用移动设备的广告规则订阅地址分享
https://banbendalao.coding.net/p/adgk/d/ADgk/git/raw/master/ADgk.txt
https://gitee.com/halflife/list/raw/master/ad.txt
https://filters.adtidy.org/android/filters/2_optimized.txt
https://filters.adtidy.org/android/filters/224_optimized.txt
复制授权
1/*
2 * @name: 复制授权
3 * @Author: Sky
4 * @version: 1.3
5 * @description: 管理网页复制行为
6 * @include: *
7 * @createTime: 2020-8-8 11:55
8 * @updateTime: 2020-5-9 3:10
9 */
10(function(){const
11/* 等号后的数可供修改
12 1为是 0为否 */
13needc = 1, /* 拦截复制时是否弹窗确认 */
14shows = 0, /* 是否显示小红点开关 */
15/*----以下勿改----*/
16 key = encodeURIComponent('复制授权:执行判断');
17 if(window[key]){return;}
18 try {
19 window[key] = true;
20 let red = true;
21 function pc(e){if(red && !(needc && confirm('网页正在尝试复制,是否允许?'))){e.preventDefault();e.stopPropagation();}}
22 document.addEventListener('copy',(e)=>pc(e),{'passive':false, 'capture':true});
23Array.from(document.getElementsByTagName('iframe')).forEach((i)=>i.contentDocument.addEventListener('copy',(e)=>pc(e),{'passive':false, 'capture':true}));
24 if(shows){
25 const sw = document.createElement("div");
26 sw.style = 'position:fixed!important;bottom:45%;right:10px;z-index:999999;width:14px;height:14px;opacity:0.4;border-radius:7px;background:red';
27 document.body.appendChild(sw);
28 sw.addEventListener('touchmove', function(e){
29 sw.style.right = sw.style.bottom = '';
30 sw.style.left = (e.touches[0].clientX - 7) + 'px';
31 sw.style.top = (e.touches[0].clientY - 7) + 'px';
32 }, {'passive':true});
33 sw.addEventListener('click', function(e){
34 sw.style.background = red ? 'green' : 'red'
35 red = !red;
36 }, {'passive':true});
37 }
38 } catch(err){console.log('复制授权:', err);}
39})();
蓝奏云链接自动修复
1;(function(){window.onload = setTimeout(function(){ if (location.href==='chrome-error://chromewebdata/') { let a = document.querySelector('a'), b = /\/\/(\w+\.)*lanzou\w?\.com\//; a = (a) ? a.href : document.querySelector('strong').innerHTML; if (b.test(a)) { location.href = a.replace(b,'//pan.lanzoui.com/'); }}},70)})();