// ==UserScript== // @name Google Favicons // @description Adds favicons to Google search results. // @include https://www.google.*/search* // @version 1.06 // @grant GM_addStyle // @icon http://i.imgur.com/ezjWmEO.png // @namespace https://greasyfork.org/users/14186 // @downloadURL none // ==/UserScript== /** * [+] CSS INFO * #res img.favicon = Normal Results Favicon Position * #res div.gG0TJc img.favicon, #res div.card-section a.RTNUJf img.favicon = News Tab Favicon Position * #res div.card-section a.RTNUJf img.favicon = News Tab Sub Results Favicon Size * [+] QUERY INFO * #res .g div.rc h3 a = Normal Results * #res div.gG0TJc a = News Tab Header Results * #res div.card-section a.RTNUJf = News Tab Sub Results */ (function(){ (typeof GM_addStyle != 'undefined' ? GM_addStyle : function addStyle(css) { var head = document.getElementsByTagName('head')[0]; var style = document.createElement("style"); style.type = "text/css"; style.appendChild(document.createTextNode(css)); head.appendChild(style); })("#res img.favicon {\ margin-right: 10px;\ vertical-align: inherit;\ border: none;\ left: 1px;\ position: relative;\ top: 1px;\ z-index: 9;\ }\ #res div.gG0TJc img.favicon, #res div.card-section a.RTNUJf img.favicon {\ vertical-align: middle;\ left: 0px;\ top: 0px;\ margin-right: 7px;\ padding-bottom: 2.3px;\ }\ #res div.card-section a.RTNUJf img.favicon {\ width: 0.9em;\ height: 0.9em;\ padding-bottom: 0px;\ }\ "); var FAVICON_GRABBER = 'https://www.google.com/s2/favicons?domain='; // 'http://favicon.yandex.net/favicon/' var QUERY = '#res .g div.rc h3 a, #res div.gG0TJc a, #res div.card-section a.RTNUJf'; /** * @param {NodeList} links */ function add_favicons_to(links) { for (var i=0; i