github.user.js - dotfiles - leot's dotfiles
(HTM) hg clone https://bitbucket.org/iamleot/dotfiles
(DIR) Log
(DIR) Files
(DIR) Refs
---
github.user.js
---
1 // ==UserScript==
2 // @name github
3 // @description Remove signup banners from GitHub
4 // @include http*://github.com/*
5 // ==/UserScript==
6
7 [".signup-prompt-bg"].forEach(function(c) {
8 document.querySelectorAll(c).forEach(function(e) {
9 e.remove();
10 });
11 });