Changeset 24394

Show
Ignore:
Timestamp:
11/20/08 10:57:39 (5 years ago)
Author:
drry
Message:
  • リロードしないです。
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/javascript/userscripts/highratetube.user.js

    r24360 r24394  
    55// @exclude   http://*.youtube.com/watch?*fmt=* 
    66// @author    Arc Cosine 
    7 // @version   1.3 
     7// @version   1.4 
    88// ==/UserScript== 
    9 (function(){ 
     9(function(w){ 
    1010    if( document.getElementById( 'watch-video-quality-setting' ) ){ 
    11         location.search += '&fmt=22'; 
     11        w.changeVideoQuality( w.yt.VideoQualityConstants.HIGH ); 
    1212    } 
    13 })(); 
     13})(this.unsafeWindow || this);