aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoranekos2013-06-09 14:44:41 +0900
committeranekos2013-06-09 14:44:41 +0900
commit9e13db66a1ca914987e1ff82dd7fe9bb86480f24 (patch)
tree7ebe197016e2612e78c07a22f361bc829b77e373
parent2997df782d42308a279ffb5a9f151795e1952e76 (diff)
downloadvimperator-plugins-9e13db66a1ca914987e1ff82dd7fe9bb86480f24.tar.bz2
Support https://youtube.com
-rw-r--r--stella.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/stella.js b/stella.js
index 425b839..9000ac1 100644
--- a/stella.js
+++ b/stella.js
@@ -39,7 +39,7 @@ let PLUGIN_INFO = xml`
<name lang="ja">すてら</name>
<description>For Niconico/YouTube/Vimeo, Add control commands and information display(on status line).</description>
<description lang="ja">ニコニコ動画/YouTube/Vimeo 用。操作コマンドと情報表示(ステータスライン上に)追加します。</description>
- <version>0.33.1</version>
+ <version>0.33.2</version>
<author mail="anekos@snca.net" homepage="http://d.hatena.ne.jp/nokturnalmortum/">anekos</author>
<license>new BSD License (Please read the source code comments of this plugin)</license>
<license lang="ja">修正BSDライセンス (ソースコードのコメントを参照してください)</license>
@@ -1023,7 +1023,7 @@ Thanks:
get totalTime () parseInt(this.player.getDuration()),
- get isValid () (this.player && U.currentURL.match(/^http:\/\/(?:[^.]+\.)?youtube\.com\/watch/)),
+ get isValid () (this.player && U.currentURL.match(/^https:\/\/(?:[^.]+\.)?youtube\.com\/watch/)),
get volume () parseInt(this.player.getVolume()),
set volume (value) (this.player.setVolume(value), this.volume),