electron/spec-main/fixtures/extensions/chrome-runtime/manifest.json
Cheng Zhao 5de6adfb84
test: load page with some content when testing extension (#23901)
* test: load page with some content when testing extension

* test: use dom-ready to wait for page loaded with extension
2020-06-03 16:56:28 +09:00

12 lines
205 B
JSON

{
"name": "chrome-runtime",
"version": "1.0",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["main.js"],
"run_at": "document_end"
}
],
"manifest_version": 2
}