-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document pixels sent by the extension (#2875)
* Specify breakage report pixels * First autofill pixel * Tidy up parameter definitions * Add pixel validation to lint check * Fix validation path * Schema improvements * Re-add pixel-schema dependency
- Loading branch information
1 parent
2b850d4
commit 4a001ff
Showing
7 changed files
with
753 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"extensionVersion": { | ||
"key": "extensionVersion", | ||
"type": "string", | ||
"description": "", | ||
"pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$", | ||
"examples": ["2024.10.16"] | ||
}, | ||
"atb": { | ||
"key": "atb", | ||
"type": "string", | ||
"pattern": "v[0-9]{1,3}-[0-7]([a-z]{2})?", | ||
"description": "Add to browser value, corresponding to the users install week and day" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"browser": { | ||
"type": "string", | ||
"description": "Browser type", | ||
"enum": ["chrome", "firefox", "edg", "opera", "brave"] | ||
}, | ||
"extension": { | ||
"type": "string", | ||
"description": "Platform text.", | ||
"enum": ["extension"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"email.tooltop.show": { | ||
"description": "", | ||
"owners": [ | ||
"emanuele" | ||
], | ||
"triggers": [ | ||
"other" | ||
], | ||
"suffixes": [ | ||
"extension", | ||
"browser" | ||
], | ||
"parameters": [ | ||
{ | ||
"key": "cohort", | ||
"description": "Beta cohort" | ||
}, | ||
{ | ||
"key": "duck_address_last_used", | ||
"description": "", | ||
"format": "date" | ||
} | ||
] | ||
} | ||
} |
Oops, something went wrong.