Skip to content

Instantly share code, notes, and snippets.

View PaulvdDool's full-sized avatar

Paul van den Dool PaulvdDool

View GitHub Profile
@PaulvdDool
PaulvdDool / userscript.js
Last active April 4, 2026 09:15
Github - Add reviewer avatars and review status on PR dashboard
// ==UserScript==
// @name Enhanced Pull Request Overview
// @namespace http://tampermonkey.net/
// @version 2026-04-04
// @description GitHub should have added this years ago
// @author mxt-mischa, PaulvdDool
// @match https://github.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=github.com
// @grant GM_addStyle
// @license MIT
@PaulvdDool
PaulvdDool / global.js
Last active November 5, 2023 15:35
Line item properties in Dawn theme for Bundles app
// when variant changes
this.updateBundleVariant( variant );
// add at bottom of JS file
function updateBundleVariant( variant ) {
// remove old line item properties from DOM
[ ...document.querySelectorAll( '.bundles_lineItemProperty' ) ].forEach( lineItemProperty => {
lineItemProperty.parentNode.removeChild( lineItemProperty );
} );