Changeset 25220

Show
Ignore:
Timestamp:
11/28/08 15:54:10 (6 weeks ago)
Author:
drry
Message:
  • AMO の URL を変更しました。
  • ほか。
Location:
lang/javascript/vimperator-plugins/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lang/javascript/vimperator-plugins/trunk/pathtraq.js

    r25170 r25220  
    22 * ==VimperatorPlugin== 
    33 * @name            pathtraq.js 
    4  * @description     optimize the indicator of Pathtraq addon. 
    5  * @description-ja  Pathtraq addon の表示をいい感じにする。 
     4 * @description     optimize the indicator of Pathtraq add-on. 
     5 * @description-ja  Pathtraq アドオンの表示をいい感じにする。 
    66 * @author          janus_wel <janus_wel@fb3.so-net.ne.jp> 
    77 * @version         0.10 
     
    1414 * 
    1515 * USAGE 
    16  *  this plugin change Pathtraq indicators to non-display, 
     16 *  This plugin change Pathtraq indicators to non-display, 
    1717 *  and display the icon of Pathtraq. 
    1818 *  you can use value 'p' in option 'pageinfo'. 
     
    2929( function () { 
    3030 
    31 // addon check 
     31// add-on check 
    3232const doc = window.document; 
    3333if (!doc.getElementById('pathtraq-status')) { 
    34     liberator.log('pathtraq.js is need pathtraq addon: http://pathtraq.com/install', 0); 
     34    liberator.log('pathtraq.js is need Pathtraq add-on: http://pathtraq.com/install', 0); 
    3535    return; 
    3636} 
  • lang/javascript/vimperator-plugins/trunk/yslow.js

    r25170 r25220  
    22 * ==VimperatorPlugin== 
    33 * @name            yslow.js 
    4  * @description     optimize the indicator of YSlow addon. 
    5  * @description-ja  YSlow addon の表示をいい感じにする。 
     4 * @description     optimize the indicator of YSlow add-on. 
     5 * @description-ja  YSlow アドオンの表示をいい感じにする。 
    66 * @author          janus_wel <janus_wel@fb3.so-net.ne.jp> 
    77 * @version         0.10 
     
    2626( function () { 
    2727 
    28 // addon check 
     28// add-on check 
    2929const doc = window.document; 
    3030if (!doc.getElementById('yslowStatusBar')) { 
    31     liberator.log('yslow.js is need YSlow addon: https://addons.mozilla.org/ja/firefox/addon/5369', 0); 
     31    liberator.log('yslow.js is need YSlow add-on: https://addons.mozilla.org/firefox/addon/5369', 0); 
    3232    return; 
    3333} 
     
    4343        if(verbose) { 
    4444            if (grade.value && grade.value !== 'YSlow') yield ['Grade', grade.value]; 
    45             if (size.value)  yield ['Size', size.value]; 
    46             if (time.value)  yield ['Time', time.value]; 
     45            if (size.value) yield ['Size', size.value]; 
     46            if (time.value) yield ['Time', time.value]; 
    4747        } 
    4848        return;