niconico max-width: 1280px

  • /*
     * @title niconico max-width: 1280px
     * @description 動画プレーヤーの横幅を最大1280pxにする
     * @include https://www.nicovideo.jp/watch/*
     * @license MIT License
     */
    
    (function() {
    let s = document.createElement('style');
    s.setAttribute('type', 'text/css');
    s.innerHTML='.PlayerPresenter{max-width: 1280px;}';
    document.head.appendChild(s);
    })();
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2026/05/26 22:02:28 - 05/26