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 fd00dd4 commit 8289d28Copy full SHA for 8289d28
1 file changed
popup/popup.js
@@ -91,7 +91,12 @@ document
91
status: activeTab.status,
92
},
93
browser: browserInfo,
94
- platform: platformInfo,
+ platform: {
95
+ name: platformInfo.name || "unknown",
96
+ version: platformInfo.version || "unknown",
97
+ architecture: platformInfo.architecture || "unknown",
98
+ os: platformInfo.os || "unknown",
99
+ },
100
triggeredAt: new Date().toISOString(),
101
};
102
@@ -116,7 +121,10 @@ document
116
121
"{{tab.incognito}}": activeTab.incognito,
117
122
"{{tab.status}}": activeTab.status,
118
123
"{{browser}}": JSON.stringify(browserInfo),
119
- "{{platform}}": JSON.stringify(platformInfo),
124
+ "{{platform.architecture}}": platformInfo.architecture,
125
+ "{{platform.name}}": platformInfo.name,
126
+ "{{platform.os}}": platformInfo.os,
127
+ "{{platform.version}}": platformInfo.version,
120
128
"{{triggeredAt}}": new Date().toISOString(),
129
"{{identifier}}": webhook.identifier || ""
130
0 commit comments