Unfilter web pages

try to take over the world!

2016/10/15のページです。最新版はこちら

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Unfilter web pages
// @namespace    http://tampermonkey.net/
// @version      1.0.1
// @description  try to take over the world!
// @author       You
// @match        *://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    document.body.style.filter = 'none';
    document.getElementsByTagName('html')[0].style.filter = 'none';
})();