V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
anyilin
V2EX  ›  前端开发

夸克浏览器自行向<head>添加了一个 meta 标签

  •  
  •   anyilin · 3 天前 · 741 次点击
    正文发不出来,CF 拦截了,各位看图吧。

    补充信息:夸克是安卓最新版、全新安装的。

    第 1 条附言  ·  3 天前

    想到了一个有效的粗暴解法,在水合之前执行:

    const targetNode = document.head.querySelector('meta[name="wpk-bid_lowpri"]');
    if (targetNode) {
    	targetNode.remove();
    	for (const node of document.head.childNodes) {
    		if (node.nodeType === Node.TEXT_NODE && node.textContent.trim() === '') {
    			node.remove();
    			break;
    		}
    	}
    }
    
    1 条回复    2025-01-14 20:22:29 +08:00
    vizards
        1
    vizards  
       3 天前 via iPhone
    https://yueying-docs.effirst.com/yueying-intro.html
    看起来像是这玩意插入的 meta 标签。简单看了下,UC 出的
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2634 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 22ms · UTC 04:59 · PVG 12:59 · LAX 20:59 · JFK 23:59
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.