chrome插件模拟isTrusted的事件

2024-09-02 20:36

本文主要是介绍chrome插件模拟isTrusted的事件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

文章目录

  • 方法
  • 原理

使用js模拟的事件isTrusted的值时false。有的时候我们想要模拟sTrusted未true的事件就比较麻烦了。
我们可以利用chrome插件的 chrome.debugger解决改问题。

方法

大体思路是:模拟事件的请求从content_script.js发出,到达background.js进行模拟。

  • manifest中声明debugger的权限
    manifest.json:
{"manifest_version": 3,"name": "test","description": "test","version": "0.0.1","background": {"service_worker": "background.js"},"action": {"default_popup": "./dist/index.html"},"content_scripts": [{"js": ["content_script.js"],"run_at": "document_start"}],"permissions": ["debugger",]
}
  • content_script.js发出请求
// 该函数的作用是:通过触发element身上的mousedown事件来触发element的点击事件
function openDebuggerToClick(element) {return new Promise((resolve, reject) => {console.log('click目标是', element)const x = element.getBoundingClientRect().left + 5const y = element.getBoundingClientRect().top + 5// 根据按钮的mousedown事件来触发点击事件element.addEventListener('mousedown',function (e) {if (!e.isTrusted) {e.preventDefault()let obj = { x, y }chrome.runtime.sendMessage({action: 'mousedownToClick',params: obj},function (response) {console.log('响应结果是', response)if (response.code === 200) {resolve('click success')} else {reject('click fail')}})}},true)// 触发clickelement.dispatchEvent(new MouseEvent('mousedown', {bubbles: true,cancelable: true}))})
}
  • background.js处理请求,模拟isTrusted未true的点击
chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {if (request.action === 'mousedownToClick') {const { params } = requestimpMousedownToClick(params, sender, sendResponse)}return true
})
//  ----------------------mouseDown模拟点击跳过限制----------------
const impMousedownToClick = (params, sender, sendResponse) => {chrome.debugger.attach({ tabId: sender.tab.id }, '1.2', function () {console.log('接收到content的消息---------', params, sender)let flag = true// sendResponse({ yourEvent: '正在调整, 需要时间生效' })const xC = params.xconst yC = params.y//通过触发鼠标的按下和抬起事件来触发点击事件chrome.debugger.sendCommand({ tabId: sender.tab.id },'Input.dispatchMouseEvent',{ type: 'mousePressed', x: xC, y: yC, button: 'left', clickCount: 1 },function () {if (chrome.runtime.lastError) {console.error(chrome.runtime.lastError.message)flag = falsereturn}})chrome.debugger.sendCommand({ tabId: sender.tab.id },'Input.dispatchMouseEvent',{type: 'mouseReleased',x: xC,y: yC,button: 'left',clickCount: 1},function () {console.log('鼠标弹起完成_ 处理返回逻辑')if (chrome.runtime.lastError) {console.error(chrome.runtime.lastError.message)flag = falsereturn}setTimeout(() => {if (flag) {sendResponse({ code: 200, message: '点击成功' })} else {sendResponse({ code: 500, message: '点击失败' })}chrome.debugger.detach({ tabId: sender.tab.id }, () => {console.log('取消attach')})}, 5000)})})
}

原理

什么是isTrusted属性?在web api官方网站mozilla.org有如下解释:“Event接口的 isTrusted 属性是一个只读属性,它是一个布尔值(Boolean)。当事件是由用户行为生成的时候,这个属性的值为 true ,而当事件是由脚本创建、修改、通过 EventTarget.dispatchEvent() 派发的时候,这个属性的值为 false 。”

所以如果我们使用Chrome DevTools Protocol协议的Input.dispatchMouseEvent接口,触发的事件isTrusted就为true。

在这里插入图片描述

这篇关于chrome插件模拟isTrusted的事件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1131002

相关文章

C#如何动态创建Label,及动态label事件

《C#如何动态创建Label,及动态label事件》:本文主要介绍C#如何动态创建Label,及动态label事件,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录C#如何动态创建Label,及动态label事件第一点:switch中的生成我们的label事件接着,

CSS模拟 html 的 title 属性(鼠标悬浮显示提示文字效果)

《CSS模拟html的title属性(鼠标悬浮显示提示文字效果)》:本文主要介绍了如何使用CSS模拟HTML的title属性,通过鼠标悬浮显示提示文字效果,通过设置`.tipBox`和`.tipBox.tipContent`的样式,实现了提示内容的隐藏和显示,详细内容请阅读本文,希望能对你有所帮助... 效

spring @EventListener 事件与监听的示例详解

《spring@EventListener事件与监听的示例详解》本文介绍了自定义Spring事件和监听器的方法,包括如何发布事件、监听事件以及如何处理异步事件,通过示例代码和日志,展示了事件的顺序... 目录1、自定义Application Event2、自定义监听3、测试4、源代码5、其他5.1 顺序执行

JavaScript中的isTrusted属性及其应用场景详解

《JavaScript中的isTrusted属性及其应用场景详解》在现代Web开发中,JavaScript是构建交互式应用的核心语言,随着前端技术的不断发展,开发者需要处理越来越多的复杂场景,例如事件... 目录引言一、问题背景二、isTrusted 属性的来源与作用1. isTrusted 的定义2. 为

Python如何使用seleniumwire接管Chrome查看控制台中参数

《Python如何使用seleniumwire接管Chrome查看控制台中参数》文章介绍了如何使用Python的seleniumwire库来接管Chrome浏览器,并通过控制台查看接口参数,本文给大家... 1、cmd打开控制台,启动谷歌并制定端口号,找不到文件的加环境变量chrome.exe --rem

IDEA常用插件之代码扫描SonarLint详解

《IDEA常用插件之代码扫描SonarLint详解》SonarLint是一款用于代码扫描的插件,可以帮助查找隐藏的bug,下载并安装插件后,右键点击项目并选择“Analyze”、“Analyzewit... 目录SonajavascriptrLint 查找隐藏的bug下载安装插件扫描代码查看结果总结Sona

Python中的异步:async 和 await以及操作中的事件循环、回调和异常

《Python中的异步:async和await以及操作中的事件循环、回调和异常》在现代编程中,异步操作在处理I/O密集型任务时,可以显著提高程序的性能和响应速度,Python提供了asyn... 目录引言什么是异步操作?python 中的异步编程基础async 和 await 关键字asyncio 模块理论

禁止平板,iPad长按弹出默认菜单事件

通过监控按下抬起时间差来禁止弹出事件,把以下代码写在要禁止的页面的页面加载事件里面即可     var date;document.addEventListener('touchstart', event => {date = new Date().getTime();});document.addEventListener('touchend', event => {if (new

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

usaco 1.2 Transformations(模拟)

我的做法就是一个一个情况枚举出来 注意计算公式: ( 变换后的矩阵记为C) 顺时针旋转90°:C[i] [j]=A[n-j-1] [i] (旋转180°和270° 可以多转几个九十度来推) 对称:C[i] [n-j-1]=A[i] [j] 代码有点长 。。。 /*ID: who jayLANG: C++TASK: transform*/#include<