File: feed_internals.html

package info (click to toggle)
chromium 138.0.7204.157-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,864 kB
  • sloc: cpp: 34,936,859; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,967; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (167 lines) | stat: -rw-r--r-- 4,013 bytes parent folder | download | duplicates (6)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!--
Copyright 2018 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->

<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <title>Feed Internals</title>

  <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
  <link rel="stylesheet" href="feed_internals.css">

  <script type="module" src="feed_internals.js"></script>
</head>

<body>

  <h2>Web Feed</h2>
  <p>
    <label>
      <input type="checkbox" id="enable-webfeed-follow-intro-debug"
             name="enable-webfeed-follow-intro-debug">
      Enable IPH debug mode
    </label>
  </p>
  <p>
    <label>
      <input type="checkbox" id="use-feed-query-requests"
             name="use-feed-query-requests">
      Use legacy endpoint for content fetches
    </label>
  </p>
  <p>
    Following feed order:
    <label>
      <input type="radio" id="following-feed-order-unset"
             name="following-feed-order">
      Unset
    </label>
    <label>
      <input type="radio" id="following-feed-order-grouped"
             name="following-feed-order">
      Grouped
    </label>
    <label>
      <input type="radio" id="following-feed-order-reverse-chron"
             name="following-feed-order">
      Reverse-Chron
    </label>
  </p>

  <h2>Properties</h2>
  <table>
    <tr>
      <td>Is Feed Enabled</td>
      <td id="is-feed-enabled"></td>
    </tr>
    <tr>
      <td>Is Feed Visible</td>
      <td id="is-feed-visible"></td>
    </tr>
    <tr>
      <td>Is Feed Allowed</td>
      <td id="is-feed-allowed"></td>
    </tr>
    <tr>
      <td>Is Prefetching Enabled</td>
      <td id="is-prefetching-enabled"></td>
    </tr>
    <tr>
      <td>Load Stream Status</td>
      <td id="load-stream-status"></td>
    </tr>
    <tr>
      <td>Feed Fetch URL</td>
      <td id="feed-fetch-url"></td>
    </tr>
    <tr>
      <td>Feed Actions URL</td>
      <td id="feed-actions-url"></td>
    </tr>
  </table>

  <h2>Feed Library Actions</h2>
  <button id="refresh-for-you">
    Refresh For-You Feed
  </button>
  <button id="refresh-following">
    Refresh Following Feed
  </button>
  <button id="refresh-webfeed-suggestions">
    Refresh Following Feed Suggestions
  </button>

  <h2>Last Fetch</h2>
  <table>
    <tr>
      <td>Last Fetch Status</td>
      <td id="last-fetch-status"></td>
    </tr>
    <tr>
      <td>Last Fetch Trigger</td>
      <td id="last-fetch-trigger"></td>
    </tr>
    <tr>
      <td>Last Fetch Time</td>
      <td id="last-fetch-time"></td>
    </tr>
    <tr>
      <td>Refresh Suppress Time</td>
      <td id="refresh-suppress-time"></td>
    </tr>
    <tr>
      <td>Bless Nonce</td>
      <td id="last-fetch-bless-nonce"></td>
    </tr>
  </table>

  <h2>Last Action Upload</h2>
  <table>
    <tr>
      <td>Status</td>
      <td id="last-action-upload-status"></td>
    </tr>
    <tr>
      <td>Last Upload Time</td>
      <td id="last-action-upload-time"></td>
    </tr>
  </table>

  <h2>Feed Histograms</h2>
  <button id="load-feed-histograms">
    Load Feed Histograms
  </button>
  <details id="feed-histograms-details">
    <summary>Show/Hide</summary>
    <pre id="feed-histograms-log"></pre>
  </details>

  <h2>Feed Process Scope</h2>
  <button id="dump-feed-process-scope">
    Dump Feed Process Scope
  </button>
  <details id="feed-process-scope-details">
    <summary>Show/Hide</summary>
    <pre id="feed-process-scope-dump"></pre>
  </details>

  <h2>Feed Host Override</h2>
  <p>Cookies will be sent along with Feed requests to this host.</p>
  <input id="feed-host-override">
  <button id="feed-host-override-apply">Apply</button>

  <h2>Discover API Endpoint Override</h2>
  <input id="discover-api-override">
  <button id="discover-api-override-apply">Apply</button>

  <h2>Feed Stream Data</h2>
  <input id="feed-stream-data-file" type="file">
  <button id="feed-stream-data-override">Override</button>
</body>
</html>