提交调试文件

This commit is contained in:
halliday 2025-05-06 20:25:49 +08:00
parent 3f800decb9
commit 836e95f98d
3 changed files with 15 additions and 3 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@
/node_modules
/src/.amo-upload-uuid
/src/web-ext-artifacts
/.chrome-debug

16
.vscode/launch.json vendored
View File

@ -5,11 +5,23 @@
"version": "0.2.0",
"configurations": [
{
"name": "Launch add-on",
"name": "Launch Chrome (Extension Debug)",
"type": "chrome",
"request": "launch",
"url": "file://${workspaceFolder}/test/deepseek_html_20250425_ef9a56.html",
"webRoot": "${workspaceFolder}",
"runtimeExecutable": "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe",
"userDataDir": "${workspaceFolder}/.chrome-debug",
"runtimeArgs": [
"--load-extension=${workspaceFolder}/src//chrome" //
]
},
{
"name": "firefox add-on",
"type": "firefox",
"request": "launch",
"reAttach": true,
"addonPath": "${workspaceFolder}//src",
"addonPath": "${workspaceFolder}//src//firefox",
"url": "file://${workspaceFolder}//test//deepseek_html_20250425_ef9a56.html",
"firefoxExecutable": "D:\\Program Files\\Mozilla Firefox\\firefox.exe"
}

File diff suppressed because one or more lines are too long