Skip to content

Instantly share code, notes, and snippets.

@ryan-allen
Created September 21, 2016 04:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryan-allen/fd45c6f7396fffe28b6b3b51797bb14f to your computer and use it in GitHub Desktop.
Save ryan-allen/fd45c6f7396fffe28b6b3b51797bb14f to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Hide Google Inbox Canned Reply Buttons
// @namespace http://tampermonkey.net/
// @version 0.1
// @match https://inbox.google.com/*
// ==/UserScript==
(function() {
document.styleSheets[0].insertRule("div.GP { display: none; }", 1);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment