35 lines
579 B
JSON
35 lines
579 B
JSON
{
|
|
"name": "PSSH Capture",
|
|
"version": "3.0",
|
|
"manifest_version": 2,
|
|
"background": {
|
|
"scripts": [
|
|
"background.js"
|
|
]
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"*://*/*"
|
|
],
|
|
"js": [
|
|
"content-script.js"
|
|
],
|
|
"all_frames": false,
|
|
"run_at": "document_start"
|
|
}
|
|
],
|
|
"browser_action": {"default_icon": "icon.png"},
|
|
"permissions": [
|
|
"*://*/*",
|
|
"clipboardWrite",
|
|
"tabs",
|
|
"webRequest",
|
|
"activeTab",
|
|
"storage",
|
|
"webRequestBlocking"
|
|
],
|
|
"web_accessible_resources": [
|
|
"eme-logger-mod.js"
|
|
]
|
|
} |