Skip to content

Instantly share code, notes, and snippets.

@guoqiao
Created February 28, 2024 22:24
Show Gist options
  • Save guoqiao/1ae379ef05d537b21532bff2187e50b1 to your computer and use it in GitHub Desktop.
Save guoqiao/1ae379ef05d537b21532bff2187e50b1 to your computer and use it in GitHub Desktop.
customize css with Tempermonkey
// ==UserScript==
// @name LinkedIn Improve
// @namespace http://tampermonkey.net/
// @version 2024-02-28
// @description try to take over the world!
// @author You
// @match https://www.linkedin.com/messaging/thread/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=linkedin.com
// @grant GM_addStyle
// ==/UserScript==
GM_addStyle(`
.scaffold-layout__aside {
display: none;
}
#main {
min-width: 1400px;
}
`);
(function() {
'use strict';
// Your code here...
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment