Google Restore Underline

Restores underlining to Google title results.

目前為 2015-09-14 提交的版本,檢視 最新版本

// ==UserScript==
// @name Google Restore Underline
// @namespace GRU
// @description Restores underlining to Google title results.
// @version 122.13.15.0145
// @run-at  document-ready
// @include http://www.google.*/*
// @include https://www.google.*/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @author  drhouse
// @icon    https://www.google.ca/images/google_favicon_128.png
// ==/UserScript==

$(document).ready(function () {
    
    $('#res a').css('text-decoration','underline');
    
});