We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de6af2a commit 5ae43d3Copy full SHA for 5ae43d3
1 file changed
popup/popup.js
@@ -173,7 +173,11 @@ document
173
"{{platform.os}}": platformInfo.os || "unknown",
174
"{{platform.version}}": platformInfo.version,
175
"{{triggeredAt}}": new Date().toISOString(),
176
- "{{identifier}}": webhook.identifier || ""
+ "{{identifier}}": webhook.identifier || "",
177
+ "{{currentUnixTimestamp}}": Math.floor(Date.now() / 1000),
178
+ "{{currentUnixTimestampMiliseconds}}": Date.now(),
179
+ "{{currentIsoDate}}": new Date().toISOString().slice(0, 10),
180
+ "{{currentIsoDateTime}}": new Date().toISOString(),
181
};
182
183
// Replace placeholders in custom payload
0 commit comments