Files
AI/참고/playwright-main/tests/assets/extension-mv3-with-logging/manifest.json
2026-05-12 19:40:31 +09:00

17 lines
310 B
JSON

{
"manifest_version": 3,
"name": "Console Log Extension",
"version": "1.0",
"background": {
"service_worker": "background.js"
},
"permissions": [
"tabs"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
]
}