完成扩展

This commit is contained in:
dela
2026-01-10 16:53:02 +08:00
parent 9eba656dbd
commit 97b162939e
31 changed files with 8436 additions and 0 deletions

49
extension/manifest.json Normal file
View File

@@ -0,0 +1,49 @@
{
"manifest_version": 3,
"name": "Payment Automation Suite",
"version": "1.0.0",
"description": "Advanced payment automation tools for authorized testing purposes only",
"permissions": [
"storage",
"activeTab",
"webRequest"
],
"host_permissions": [
"*://*/*"
],
"background": {
"service_worker": "background/background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content/content.js"],
"run_at": "document_start",
"all_frames": true
}
],
"action": {
"default_popup": "ui/popup/popup.html",
"default_icon": {
"16": "assets/icons/icon16.png",
"32": "assets/icons/icon32.png",
"48": "assets/icons/icon48.png",
"128": "assets/icons/icon128.png"
}
},
"options_page": "ui/options/options.html",
"icons": {
"16": "assets/icons/icon16.png",
"32": "assets/icons/icon32.png",
"48": "assets/icons/icon48.png",
"128": "assets/icons/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"content/modules/*.js"
],
"matches": ["<all_urls>"]
}
]
}