Last active
June 9, 2021 22:14
-
-
Save jonybekov/029df88c0b30d86d113eef0c7a4f9adf to your computer and use it in GitHub Desktop.
Normal Linkedin logo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Normal Linkedin logo | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Changes Linkedin's rainbow logo to a normal logo | |
// @author You | |
// @match https://www.linkedin.com/* | |
// @icon https://www.google.com/s2/favicons?domain=linkedin.com | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
const logo = document.querySelector('.global-nav__logo'); | |
logo.src = "https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/LinkedIn_logo_initials.png/600px-LinkedIn_logo_initials.png" | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment