first commit

This commit is contained in:
2025-10-27 16:02:30 +07:00
commit 8a44b67d0c
7 changed files with 481 additions and 0 deletions

22
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,22 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Chrome",
"type": "chrome",
"request": "attach",
"port": 9222,
"webRoot": "${workspaceFolder}"
},
{
"name": "Execute Script on Current Tab",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/run-script.js",
"args": [
"${file}"
],
"console": "integratedTerminal"
}
]
}