blob: 4c089b429aaeb1b57bfc40a4dc8ef783ea9436cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<script src="chrome://sync-internals/notifications.js"></script>
<style>
table#notificationInfo tr:nth-child(odd) {
background: #eff3ff;
}
</style>
<p id='notificationsEnabledInfo'>
Enabled: <span jscontent='notificationsEnabled'></span>
</p>
<table id='notificationInfo'>
<tr>
<th>Type</th>
<th>Total count</th>
<th>Session count</th>
<th>Payload</th>
</tr>
<tr jsselect='notifications'>
<td jscontent='type'/>
<td jscontent='totalCount'/>
<td jscontent='sessionCount'/>
<td jscontent='payload'/>
</tr>
</table>
|