greasemonkey/github-solarized-light.user.js

28 lines
1.2 KiB
JavaScript
Raw Permalink Normal View History

2014-03-20 14:24:38 +01:00
// ==UserScript==
2014-07-03 12:07:58 +02:00
// @name GitHub Solarized
2014-03-20 14:24:38 +01:00
// @namespace https://www.schtobia.de/
2017-11-21 09:48:39 +01:00
// @version 0.1.2
2014-03-20 14:24:38 +01:00
// @description A light Solarized style for viewing source code on GitHub.
2017-11-21 09:48:39 +01:00
// @author Tobias Schmidl
2014-03-20 14:24:38 +01:00
// @include http://github.com/*
// @include https://github.com/*
// @include http://*.github.com/*
// @include https://*.github.com/*
// @exclude http://github.com/*/raw/*
// @exclude https://github.com/*/raw/*
// @exclude http://*.github.com/*/raw/*
// @exclude https://*.github.com/*/raw/*
// @exclude http://raw.github.com/*/
// @exclude https://raw.github.com/*/
// @resource solarized-light https://github.com/schtobia/github-solarized/raw/master/solarized-light.css
// @resource solarized-dark https://github.com/schtobia/github-solarized/raw/master/solarized-dark.css
// @downloadURL https://github.com/schtobia/greasemonkey/raw/master/github-solarized-light.user.js
// @updateURL https://github.com/schtobia/greasemonkey/raw/master/github-solarized-light.user.js
// @run-at document-end
// @grant GM_addStyle
// @grant GM_getResourceText
// ==/UserScript==
//
GM_addStyle(GM_getResourceText("solarized-light"));