Y[ ]

    @@ -1,5 +1,5 @@ /* - * @title Y[] + * @title Y[ ] * @description Youtube browser size expander * @include http://www.youtube.com/watch* * @include https://www.youtube.com/watch* @@ -8,16 +8,17 @@ * @require */ +// TODO capturing merge into guard-block (function () { var host = location.hostname; - if (!/www\.youtube\.com/.test(host)) return; + if (!/^www\.youtube\.com/.test(host) || /^\/embed\//.test(location.pathname)) { + return; + } var id; location.search.slice(1).split('&'). some(function (val) { - if ((id = (/^v=(\w+)/.exec(val) || [])[1])) { - return true; - } + return (id = (/^v=(\w+)/.exec(val) || [])[1]) }); var origin = location.origin || location.protocol + '//' + host;
  • /*
     * @title Y[ ]
     * @description Youtube browser size expander
     * @include http://www.youtube.com/watch*
     * @include https://www.youtube.com/watch*
     * @author  noromanba   http://flavors.me/noromanba
     * @license MIT License http://nrm.mit-license.org/2013
     * @require 
     */
    
    // TODO capturing merge into guard-block
    (function () {
        var host = location.hostname;
        if (!/^www\.youtube\.com/.test(host) || /^\/embed\//.test(location.pathname)) {
            return;
        }
    
        var id;
        location.search.slice(1).split('&').
        some(function (val) {
            return (id = (/^v=(\w+)/.exec(val) || [])[1])
        });
    
        var origin = location.origin || location.protocol + '//' + host;
        location.href = origin  + '/embed/' + id;
    })();
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2013/03/26 06:54:50 - 2013-03-26
  2. 2013/03/24 08:26:14 - 2013-03-24
  3. 2013/03/24 07:45:18 - 2013-03-24
  4. 2013/03/24 07:37:14 - 2013-03-24
  5. 2013/03/24 05:51:22 - 2013-03-24
  6. 2013/03/24 05:30:02 - 2013-03-24