mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-05 14:30:32 -05:00
a045e4f59a
Co-authored-by: Brian Mann <brian.mann86@gmail.com> Co-authored-by: Zach Bloomquist <git@chary.us> Co-authored-by: Zach Bloomquist <github@chary.us>
28 lines
481 B
JSON
28 lines
481 B
JSON
{
|
|
"name": "e2e ext",
|
|
"version": "0",
|
|
"description": "tests adding user extension into Cypress",
|
|
"permissions": [
|
|
"tabs",
|
|
"webNavigation",
|
|
"<all_urls>"
|
|
],
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"<all_urls>"
|
|
],
|
|
"exclude_matches": [
|
|
"*://*/__cypress/*",
|
|
"*://*/__/*"
|
|
],
|
|
"js": [
|
|
"background.js"
|
|
],
|
|
"run_at": "document_end",
|
|
"all_frames": true
|
|
}
|
|
],
|
|
"manifest_version": 2
|
|
}
|