Skip to content

Instantly share code, notes, and snippets.

View SeanMcP's full-sized avatar

Sean McPherson SeanMcP

View GitHub Profile
@SeanMcP
SeanMcP / zoho-mail-tweaks.user.js
Created January 25, 2023 16:42
Make Zoho Mail's UI a little nicer
// ==UserScript==
// @name Zoho Mail UI tweaks
// @namespace https://seanmcp.com
// @version 0.1
// @description Make Zoho Mail's UI a little nicer
// @author You
// @match https://mail.zoho.com/zm/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=zoho.com
// @grant none
// ==/UserScript==
<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[https://redd.one RSS Feed]]></title><description><![CDATA[Learn the latest trends in web development, as well as the ageless basics, on this clean ad-free personal blog.]]></description><link>https://redd.one</link><generator>GatsbyJS</generator><lastBuildDate>Thu, 20 Oct 2022 11:08:41 GMT</lastBuildDate><item><title><![CDATA[Practical Guide to Custom Jest Matchers]]></title><description><![CDATA[What is a matcher? In Jest , functions like .toEqual() or .toHaveProperty() are called matchers . While Jest comes with an extensive…]]></description><link>https://redd.one/practical-guide-to-custom-jest-matchers</link><guid isPermaLink="false">https://redd.one/practical-guide-to-custom-jest-matchers</guid><pubDate>Wed, 22 Jun 2022 00:00:00 GMT</pubDate><content:encoded>&lt;h2 id=&quot;what-
// ==UserScript==
// @name Google Meet Timer
// @namespace https://seanmcp.com
// @version 0.1.1
// @description Adds a simple, chat-powered timer to your Google Meets
// @author Sean McPherson
// @match https://meet.google.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=google.com
// @grant none
// ==/UserScript==
@SeanMcP
SeanMcP / reddit-tweaks.user.js
Last active May 10, 2022 17:31
Changes to improve my experience on Reddit
// ==UserScript==
// @name Reddit Tweaks
// @namespace https://seanmcp.com
// @version 0.1.1
// @description Changes to improve my experience on Reddit
// @author SeanMcP
// @match https://www.reddit.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=reddit.com
// @grant none
// ==/UserScript==
@SeanMcP
SeanMcP / linkedin-tweaks.user.js
Last active May 10, 2022 17:31
Changes to improve my experience on LinkedIn
// ==UserScript==
// @name LinkedIn Tweaks
// @namespace https://seanmcp.com
// @version 0.1.2
// @description Changes to improve my experience on LinkedIn
// @author SeanMcP
// @match https://www.linkedin.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=linkedin.com
// @grant none
// ==/UserScript==
@SeanMcP
SeanMcP / google-meet-ui.user.js
Last active March 10, 2021 18:21
Small improvements to the Google Meet UI
// ==UserScript==
// @name Google Meet UI Improvements
// @namespace https://seanmcp.com
// @version 0.2
// @description Small improvements to the Google Meet UI
// @author Sean McPherson
// @match https://meet.google.com/*
// @grant none
// ==/UserScript==
@SeanMcP
SeanMcP / increase-audio-playback.user.js
Created February 18, 2021 18:25
🎧 Increase the playback speed of audio elements around the web
// ==UserScript==
// @name Increase audio playback
// @namespace https://seanmcp.com
// @version 0.1
// @description Increase the playback speed of audio elements around the web
// @author Sean McPherson
// @match *://*/*
// @grant none
// ==/UserScript==
@SeanMcP
SeanMcP / github-cr-toolbox.user.js
Created February 18, 2021 17:55
🧰 Floating tools to make code reviews on GitHub a little easier
// ==UserScript==
// @name GitHub CR Toolkit
// @namespace https://niche.com
// @version 0.2
// @description Floating tools to make code reviews on GitHub a little easier
// @author #learn-over-lunch
// @match https://github.com/*/*/pull/*/files*
// @grant none
// ==/UserScript==
@SeanMcP
SeanMcP / github-cr-toolbox.console.js
Last active February 18, 2021 17:47
🧰 Floating tools to make code reviews on GitHub a little easier
(function githubCrToolbox() {
if (document.body.dataset.gcrt) return;
document.body.setAttribute("data-gcrt", true);
// Add styles to document.head
const styleEl = document.createElement("style");
styleEl.setAttribute("data-gcrt", true);
styleEl.innerText = `
details[data-gcrt] {
--border: 1px solid var(--color-border-primary);
@SeanMcP
SeanMcP / anchored-headings.user.js
Created February 10, 2021 15:35
Add anchors to all headings with an id
// ==UserScript==
// @name Anchored Headings
// @namespace https://seanmcp.com
// @version 0.1
// @description Add anchors to all headings with an id
// @author Sean McPherson
// @match *://*/*
// @grant none
// ==/UserScript==