…xts (#32437) Partially revert #32437 and add a test that console.log() messages from content scripts are properly reported Fixes https://github.com/microsoft/playwright/issues/32762
17 lines
310 B
JSON
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"]
|
|
}
|
|
]
|
|
} |