first commit

This commit is contained in:
2026-01-29 12:03:28 +08:00
commit 3ecfab1212
18 changed files with 34678 additions and 0 deletions

34
manifest.json Normal file
View File

@@ -0,0 +1,34 @@
{
"manifest_version": 3,
"name": "XHR 请求解密工具",
"version": "1.0.0",
"description": "自动解密项目的加密请求和响应数据",
"permissions": [
"storage",
"tabs",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content-script.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"devtools_page": "devtools.html",
"action": {
"default_popup": "popup.html",
"default_title": "XHR 解密工具"
},
"background": {
"service_worker": "background.js"
}
}