Created
November 24, 2015 05:20
-
-
Save LandisTwo/1dc9c163504a4b67546a to your computer and use it in GitHub Desktop.
Greyscale browser view - from script by John Wrenn
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 Paint It Greyscale | |
// @namespace John Wrenn | |
// @description Surf the web in soothing shades of grey! | |
// @author shadowbq | |
// @grant none | |
// @include * | |
// 2015.11.23 - got script form: https://gist.github.com/shadowbq/4556950 | |
// firefox add-on is at: https://addons.mozilla.org/en-US/firefox/addon/paintitgreyscale/ | |
// ==/UserScript== | |
var $; | |
//document.body.style.visibility = 'hidden'; | |
// Add jQuery | |
(function(){ | |
if (typeof unsafeWindow.jQuery == 'undefined') { | |
var GM_Head = document.getElementsByTagName('head')[0] || document.documentElement, | |
GM_JQ = document.createElement('script'); | |
GM_JQ.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js'; | |
GM_JQ.type = 'text/javascript'; | |
GM_JQ.async = true; | |
GM_Head.insertBefore(GM_JQ, GM_Head.firstChild); | |
} | |
GM_wait(); | |
})(); | |
// Check if jQuery's loaded | |
function GM_wait() { | |
if (typeof unsafeWindow.jQuery == 'undefined') { | |
window.setTimeout(GM_wait, 100); | |
} else { | |
$ = unsafeWindow.jQuery.noConflict(true); | |
letsJQuery(); | |
} | |
} | |
// All your GM code must be inside this function | |
function letsJQuery() { | |
var ns = "http://www.w3.org/2000/svg"; | |
var svg = document.createElementNS(ns, "svg"); | |
var filter = document.createElementNS(ns, "filter"); | |
var matrix = document.createElementNS(ns, "feColorMatrix"); | |
var values = "0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0"; | |
filter.setAttribute('id','fltr'); | |
matrix.setAttribute('values',values); | |
filter.appendChild(matrix); | |
svg.appendChild(filter); | |
$(document).ready(function() { | |
document.body.appendChild(svg); | |
document.body.style.filter="url(#fltr)"; | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment