Skip to content

Instantly share code, notes, and snippets.

@m-ueno
Created February 13, 2017 06:41
Show Gist options
  • Save m-ueno/357185be3a4602377bd404dab06feea5 to your computer and use it in GitHub Desktop.
Save m-ueno/357185be3a4602377bd404dab06feea5 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://github.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.getElementsByClassName('header')[0].style.backgroundColor = '#aaa';
// Your code here...
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment