Files
RpgRoller/tests/e2e/dom-wrap-addon/manifest.json

18 lines
359 B
JSON

{
"manifest_version": 2,
"name": "RpgRoller DOM Wrap Smoke",
"version": "1.0",
"description": "Wraps input controls at document start to mimic extension behavior during smoke tests.",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
]
}