Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name turns google into goo
- // @namespace http://tampermonkey.net/
- // @version 2024-11-09
- // @description read the title dumy
- // @author You
- // @match *://*.google.com/*
- // @match *://*.google.ca/*
- // @match *://*.google.co.uk/*
- // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- document.querySelectorAll('#logo svg :nth-child(n+4)').forEach(g => g.remove());
- document.querySelectorAll(".lnXdpd").forEach(g => { g.style.objectPosition = "108px center"; });
- })();
Add Comment
Please, Sign In to add comment