Created
November 28, 2011 16:24
-
-
Save nterray/1400967 to your computer and use it in GitHub Desktop.
Greasemonkey script to temporary fix viewvc color issues on Tuleap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Tuleap viewvc fix | |
// @namespace https://tuleap.net/ | |
// @include https://tuleap.net/* | |
// @include http://tuleap.net/* | |
// @include https://*.tuleap.net/* | |
// @include http://*.tuleap.net/* | |
// ==/UserScript== | |
var fileref = document.createElement("link"); | |
fileref.setAttribute("rel", "stylesheet"); | |
fileref.setAttribute("type", "text/css"); | |
fileref.setAttribute("href", 'http://tuleap.net/viewvc-static/styles.css'); | |
document.getElementsByTagName("head")[0].appendChild(fileref); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment