Skip to content

Instantly share code, notes, and snippets.

@malles
Created October 29, 2015 21:25
Show Gist options
  • Select an option

  • Save malles/ce63d7c2be3e98260a54 to your computer and use it in GitHub Desktop.

Select an option

Save malles/ce63d7c2be3e98260a54 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Dark
// @namespace http://your.homepage/
// @version 0.1
// @description enter something useful
// @author You
// @match https://github.com/
// @match https://*.facebook.com/*
// @grant none
// ==/UserScript==
//css
var style = document.createElement('style'),
contents = document.createTextNode(`
body {
background-color: #ccc;
color: #f0f;
}
`);
style.appendChild(contents);
document.getElementsByTagName('head')[0].appendChild(style);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment