当前位置:首页 > 技术分享

via 浏览器 vconsole 插件代码 手机浏览器页面在线调试 日志

admin4年前 (2022-11-24)技术分享5334

手机浏览器页面如何调试,使用vconsole插件

via 浏览器 支持js脚本

1.下载via浏览器。自己搜索下载即可

2.右下角三杠 点开设置-》脚本-》右上角+

// ==UserScript==
// @name         vconsole
// @namespace    https://viayoo.com/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @run-at       document-start
// @match        http://*/*
// @match        https://*/*
// @grant        none
// ==/UserScript==

var d=document;
var s=d.createElement('script');
s.setAttribute('src', 'https://cdn.bootcss.com/vConsole/3.3.0/vconsole.min.js');
s.setAttribute('charset','utf-8');
d.head.appendChild(s);
let vConsole = new VConsole();


扫描二维码推送至手机访问。

版权声明:本文由小刚刚技术博客发布,如需转载请注明出处。

本文链接:https://blog.bitefu.net/post/450.html

分享给朋友:

“via 浏览器 vconsole 插件代码 手机浏览器页面在线调试 日志” 的相关文章

mysql 数据表中查找重复记录

select [user_name],count(*) as count from [user_table] group by [user_name] having count>1; user_name 要查重复记录的字段u…

input search更改默认删除按钮的样式

改input输入框search属性下输入文字之后会在输入框最后出现一个默认样式的X不过这个样式不太好看想自定义怎么办呢方法一input[type="search"]::-webkit-search-cancel-butt…

解决 SVN Skipped 'xxx' -- Node remains in conflict

更新命令:svn up提示代码:意思就是说 ,这个文件冲突了,你要解决下Updating '.': Skipped 'data/config.php' -- …

php Aes 加密模式ECB填充pkcs5padding base64

最近做支付项目用到了aes加密不过试了好多办法总是和官方给出的结果不一样,找了很久终于找到了测试结果同 http://tool.chacuo.net/cryptaes/ <?php /**  * [Aes&nb…

七牛html js上传带进度条源码

七牛html js上传带进度条源码注册链接https://s.qiniu.com/uM7RJv完整代码下载:https://n802.com/f/349707-489018989-c141f6(访问密码:5036)http://www.yi…

Chrome 最全历史版本下载以及chromedriver下载

https://vikyd.github.io/download-chromium-history-version/#/ https://dl.lancdn.com/landian/soft/chrome/m/ chromedriver的版…

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。