14 lines
389 B
JSON
14 lines
389 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "CDP Input Coordinate Fix",
|
|
"description": "Fixes Chromium bug crbug.com/40280325 where CDP-dispatched mouse events have incorrect screenX/screenY values",
|
|
"version": "1.0",
|
|
"content_scripts": [{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"],
|
|
"run_at": "document_start",
|
|
"all_frames": true,
|
|
"match_about_blank": true
|
|
}]
|
|
}
|