Skip to content

Instantly share code, notes, and snippets.

@jonybekov
Last active June 9, 2021 22:14
Show Gist options
  • Save jonybekov/029df88c0b30d86d113eef0c7a4f9adf to your computer and use it in GitHub Desktop.
Save jonybekov/029df88c0b30d86d113eef0c7a4f9adf to your computer and use it in GitHub Desktop.
Normal Linkedin logo
// ==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