Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Chrome Script to underline Google Search results.
- // PLEASE SHARE THIS TO ANYONE AND EVERYONE WHO DISLIKES THE UPDATE!
- //PLEASE MAKE THIS A VIRAL SCRIPT!! -FACEBOOK IT, YOUTUBE IT, EMAIL IT, WHATEVER!!
- // ==UserScript==
- // @name Google Search Result Underliner - By RGSoftware (Ric Geraci)
- // @description Google Underliner
- // @include https://*.google.*
- // @include https://google.*
- // @version 1.0
- // ==/UserScript==
- var elements = document.getElementsByClassName('r');
- for (var i=0; i<elements.length; i++) {
- elements[i].setAttribute('style', 'text-decoration: underline;');
- }
- //INSTALL LINK: http://userscripts.org/scripts/show/402697
Add Comment
Please, Sign In to add comment