Google Restore Underline

Restores underlining to Google title results.

当前为 2015-09-14 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Google Restore Underline
  3. // @namespace GRU
  4. // @description Restores underlining to Google title results.
  5. // @version 122.13.15.0145
  6. // @run-at document-ready
  7. // @include http://www.google.*/*
  8. // @include https://www.google.*/*
  9. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
  10. // @author drhouse
  11. // @icon https://www.google.ca/images/google_favicon_128.png
  12. // ==/UserScript==
  13.  
  14. $(document).ready(function () {
  15. $('#res a').css('text-decoration','underline');
  16. });