完成扩展
This commit is contained in:
46
extension/manifest_v2.json
Normal file
46
extension/manifest_v2.json
Normal 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"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user