日常记录 ~ Chrome

HTTP STATUS 30x

  • 301 redirect 变成 GET请求, Moved Permanently
  • 302 redirect 变成 GET请求, Temporary Redirect
  • 303 redirect 变成 GET请求, 被 302 包含
  • 307 redirect request method 不变, Temporary Redirect
  • 308 redirect request method 不变, Permanent Redirect

Chrome Extensions

https://github.com/GoogleChrome/chrome-types/issues/7#issuecomment-986041170

schema: https://json.schemastore.org/chrome-manifest

Chrome Devtools

  • Connection ID: The Connection ID numbers in DevTools refer to a particular TCP connection.

    The new Connection ID Network Panel column in Canary can help indicate to you that a TCP connection was reused instead of handshaking and establishing a new one.

  • HAR (HTTP Archive Format) is a JSON archive file format that stores session data over many browsers (IE, Firefox, Chrome, Safari, etc.) between client and server. In the network environment, when the communication between the sender and the receiver occurs, HAR contains HTTP response and request headers.
    HAR files can contain sensitive data, so make sure you store these files securely.
    HAR file are used to inspect what is happening behind the scenes of your browser. More specifically, it has all the details about operations your browser performed. It includes information like requests made, response times, response status code etc. What is more significant it also includes sensitive data that should not be shared with untrusted parties.

    Generating a HAR file for troubleshooting