/*
* @title B/W
* @description grayscale filtering
* @contributor bouze_me http://let.hatelabo.jp/bouze_me/let/hLHUmLXtiqQm (Fork of)
* @orig-license Unknown (as-is)
* @contributor noromanba
* @license
*/
// c.f.
// https://developer.mozilla.org/en-US/docs/Web/CSS/filter
// https://dvcs.w3.org/hg/FXTF/raw-file/tip/filters/index.html#FilterProperty
(function () {
var style = document.documentElement.style;
style.webkitFilter = 'grayscale(1)';
style.filter = 'grayscale(1)'; // NIY
})();