Guest User

Untitled

a guest
Nov 9th, 2024
7
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. // ==UserScript==
  2. // @name turns google into goo
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-11-09
  5. // @description read the title dumy
  6. // @author You
  7. // @match *://*.google.com/*
  8. // @match *://*.google.ca/*
  9. // @match *://*.google.co.uk/*
  10. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. document.querySelectorAll('#logo svg :nth-child(n+4)').forEach(g => g.remove());
  17. document.querySelectorAll(".lnXdpd").forEach(g => { g.style.objectPosition = "108px center"; });
  18. })();
Add Comment
Please, Sign In to add comment