diff options
-rw-r--r-- | pathtraq.js | 10 | ||||
-rw-r--r-- | yslow.js | 12 |
2 files changed, 11 insertions, 11 deletions
diff --git a/pathtraq.js b/pathtraq.js index 23e02f5..ca6ad90 100644 --- a/pathtraq.js +++ b/pathtraq.js @@ -1,8 +1,8 @@ /* * ==VimperatorPlugin== * @name pathtraq.js - * @description optimize the indicator of Pathtraq addon. - * @description-ja Pathtraq addon の表示をいい感じにする。 + * @description optimize the indicator of Pathtraq add-on. + * @description-ja Pathtraq アドオンの表示をいい感じにする。 * @author janus_wel <janus_wel@fb3.so-net.ne.jp> * @version 0.10 * @minversion 2.0pre @@ -13,7 +13,7 @@ * New BSD License * * USAGE - * this plugin change Pathtraq indicators to non-display, + * This plugin change Pathtraq indicators to non-display, * and display the icon of Pathtraq. * you can use value 'p' in option 'pageinfo'. * it will display ratings of current page. @@ -28,10 +28,10 @@ ( function () { -// addon check +// add-on check const doc = window.document; if (!doc.getElementById('pathtraq-status')) { - liberator.log('pathtraq.js is need pathtraq addon: http://pathtraq.com/install', 0); + liberator.log('pathtraq.js is need Pathtraq add-on: http://pathtraq.com/install', 0); return; } @@ -1,8 +1,8 @@ /* * ==VimperatorPlugin== * @name yslow.js - * @description optimize the indicator of YSlow addon. - * @description-ja YSlow addon の表示をいい感じにする。 + * @description optimize the indicator of YSlow add-on. + * @description-ja YSlow アドオンの表示をいい感じにする。 * @author janus_wel <janus_wel@fb3.so-net.ne.jp> * @version 0.10 * @minversion 2.0pre @@ -25,10 +25,10 @@ ( function () { -// addon check +// add-on check const doc = window.document; if (!doc.getElementById('yslowStatusBar')) { - liberator.log('yslow.js is need YSlow addon: https://addons.mozilla.org/ja/firefox/addon/5369', 0); + liberator.log('yslow.js is need YSlow add-on: https://addons.mozilla.org/firefox/addon/5369', 0); return; } @@ -42,8 +42,8 @@ liberator.modules.buffer.addPageInfoSection( function (verbose) { if(verbose) { if (grade.value && grade.value !== 'YSlow') yield ['Grade', grade.value]; - if (size.value) yield ['Size', size.value]; - if (time.value) yield ['Time', time.value]; + if (size.value) yield ['Size', size.value]; + if (time.value) yield ['Time', time.value]; } return; } |