Google Restore Underline

Restores underlining to Google title results.

< Feedback on Google Restore Underline

Review: Good - script works

§
Posted: 28-09-2018

Google Restore Underline

Hello, drhouse.

Is there maybe a chance that you could Please update this script?

It just stopped working recently... :-(

§
Posted: 28-09-2018
Edited: 28-09-2018

Although not exactly the same, you can try this style/script: https://greasyfork.org/en/scripts/18510-google-card-style-ui

§
Posted: 29-09-2018

Hello, Azazello.

Thank you for repliyng to me, but that is not what I am looking for.

drhouseAuthor
§
Posted: 30-09-2018

@"Dino B." said: Is there maybe a chance that you could Please update this script?

Hi, I took a look and updated the script so it's working again, cheers.

§
Posted: 05-10-2018

Hello, drhouse.

Thank You soo much for an update!!!!! :smile: :) :) :)

All the best.

§
Posted: 05-10-2018

@drhouse said:

Hi, I took a look and updated the script so it's working again, cheers.

I decided to use this myself. :smiley: Thanks @drhouse!

§
Posted: 06-10-2018

I also have one old script that sometimes work and sometimes it just stops working, but then one day it starts working again, really weird.

Here it is:

// ==UserScript== // @name Google links old style

// @include http://www.google./ // @include http://www.google./?* // @include http://www.google./# // @include http://www.google./search // @include http://www.google./webhp // @include https://www.google./ // @include https://www.google./?* // @include https://www.google./# // @include https://www.google./search // @include https://www.google./webhp // @include https://encrypted.google./ // @include https://encrypted.google./?* // @include https://encrypted.google./# // @include https://encrypted.google./search // @include https://encrypted.google./webhp

// @grant GM_addStyle

// ==/UserScript== +function(){ var links = '#res h3.r a'; var items = 'li.g'; var s = document.createElement('style'); s.textContent = links+'{text-decoration:underline!important;font-size:16px!important;}'+items+'{margin-bottom:12px;!important}'; document.head.appendChild(s); }();

Post reply

Sign in to post a reply.