/*
* @title Nakashoku
* @description de-color to scanned printable recycled colored paper
* @include http://*
* @include https://*
* @license MIT License https://opensource.org/licenses/MIT
* @javascript_url
*/
// e.g.
// https://shonenjumpplus.com/episode/10834108156632227683
// p.9-
(() => {
const style = document.body.style;
style.filter ?
style.filter = '' :
style.filter = [
'grayscale(1)',
'brightness(120%)',
//'contrast(120%)',
//'saturate(120%)',
].join(' ');
})();