Y[ ]
by
noromanba
2013-03-26 [2013/03/26 06:54:50]
Youtube browser size expander
/*
* @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
*/
(function () {
var host = location.hostname;
if (!/www\.youtube\.com/.test(host)) return;
var id;
location.search.slice(1).split('&').
some(function (val) {
if ((id = (/^v=(\w+)/.exec(val) || [])[1])) {
return true;
}
});
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 です。