Answers:
在HTML中找到“快捷方式图标”链接有时可能有点乏味。另一种方法是创建Internet快捷方式(即IE中的“收藏夹”,也称为“书签”)并使用记事本打开它:
[DEFAULT]
BASEURL=http://superuser.com/questions/532616/grab-favicon-ico-…
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
[InternetShortcut]
URL=http://superuser.com/questions/532616/grab-favicon-ico-using-google-…
IDList=
-> IconFile=http://cdn.sstatic.net/superuser/img/favicon.ico
IconIndex=1
IconFile和IconIndex通常在末尾。
您可以点击Ctrl+ U来查看源代码,并查找图标的代码(<link rel="shortcut icon"
)。它通常位于HTML源文件的顶部,因为它位于的内部<head>
。
对于此页面,它在第七行:
<!DOCTYPE html>
<html>
<head>
<title>Grab favicon.ico using Google Chrome dev tools - Super User</title>
<link rel="shortcut icon" href="http://cdn.sstatic.net/superuser/img/favicon.ico">
<link>
元素只是其中之一。
您可以使用Google的功能来做到这一点:
http://www.google.com/s2/favicons?domain=www.google.de
替换上面的域名将获取该给定域名的图标。
您还可以使用以下变体:
http://www.google.com/s2/favicons?domain_url=http%3A%2F%2Fwww.google.de%2F
它将获得所有网址的网站图标。
https://www.google.com/s2/favicons?domain=media.pactcoffee.com/
结束工作。我猜它在原始版本上不起作用,因为它是从其他子域中获得收藏夹图标的。
您为什么不右键单击页面并选择 inspect element
?这将为您提供该页面的html代码,并且该图标在此处列出。只需单击链接。
/favicon.ico
,该默认位置不会登录资源,也不会显示在Chrome中的网络流量上
/favicon.ico
。参考:mathiasbynens.be/notes/rel-shortcut-icon