以下可能吗?
我想托管处理网址收藏夹的应用,例如getFavicon。
网站:http://g.etfv.co来源:https://github.com/potatolondon/getfavicon。
我上周通过电子邮件向创作者询问了这篇文章的标题,没有回复。我看到有很多Python涉及,只是将文件放在我的服务器上并没有做任何事情。
答案 0 :(得分:0)
我发现类似于为node.JS编写的东西并在此处分叉:https://github.com/IdeasNeverCease/getFavicon。
编辑:此代码符合我的原始请求,即无论URL如何加载favicon:
var getFavicon = function () {
var favicon, _tabID = $(".tab.active").attr("data-tab");
var nodeList = $("iframe" + _tabID).contents().find("link");
for (var i = 0; i < nodeList.length; i++) {
// get any type of icon
if ((nodeList[i].getAttribute("rel") == "icon") || (nodeList[i].getAttribute("rel") == "shortcut icon") || (nodeList[i].getAttribute("rel") == "apple-touch-icon")) {
favicon = nodeList[i].href; // get absolute path
}
}
return favicon;
};