DomainIcon
data class DomainIcon(val rel: Relationship, val url: String, val sizes: String, val mimeType: String, val precomposed: Boolean, val length: Int) : Icon
Icon information associated with the Website domain.
e.g. Assuming that the URL of the site is https://www.example.com/index.html
When the file name is "apple-touch-icon-120x120-precomposed.png", the following values are stored
rel=ICON
url=https://www.example.com/favicon.ico
sizes=120x120
mimeType=image/x-icon <- Content-Type value of the response from the server
precomposed=false
length=99999 <- Content-Length value of the response from the server
Content copied to clipboard
When the file name is "favicon.con", the following values are stored
rel=ICON
url=https://www.example.com/favicon.ico
sizes= <- empty
mimeType=image/x-icon <- Content-Type value of the response from the server
precomposed=false
length=99999 <- Content-Length value of the response from the server
Content copied to clipboard