Darken screen

  • /*
     * @title Darken screen
     * @description ページの表示部分を暗くします。夜スクリーンが眩しいと思った時に。ESCキーで解除できます。
     * @include http://*
     * @license MIT License
     */
    
    (function(){var a,b;b=document;a=b.createElement("div");a.style.position="fixed";a.style.top="50%";a.style.left="50%";a.style.outline="1000px solid rgba(0,0,0,.25)";a.style.zIndex=1E8;b.getElementsByTagName("body")[0].appendChild(a);b.onkeydown=function(b){if(27===b.keyCode)return a.parentNode.removeChild(a)}}).call(this);
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2014/07/20 10:13:44 - 2014-07-20