完成扩展

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

View File

@@ -0,0 +1,46 @@
{
"manifest_version": 2,
"name": "Payment Automation Suite",
"version": "1.0.0",
"description": "Advanced payment automation tools for authorized testing purposes only",
"permissions": [
"storage",
"activeTab",
"webRequest",
"<all_urls>"
],
"background": {
"scripts": ["background/background.js"],
"persistent": true
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content/content.js"],
"run_at": "document_start",
"all_frames": true
}
],
"browser_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_ui": {
"page": "ui/options/options.html",
"open_in_tab": true
},
"icons": {
"16": "assets/icons/icon16.png",
"32": "assets/icons/icon32.png",
"48": "assets/icons/icon48.png",
"128": "assets/icons/icon128.png"
},
"web_accessible_resources": [
"content/modules/*.js"
]
}