0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Discord Orbs】動画クエストを10倍速再生してさっさと報酬をもらう

Posted at

りょうです
今回はDiscordの動画クエストを10倍速再生するブックマークレット作ったので書いておきます。

discord orbs

先日正式にDiscordに実装されたOrbsクエストです。
image.png
https://discord.com/discovery/quests からアクセスできます

貰える報酬
image.png

ブックマークレット

javascript:(()=>{const video=Array.from(document.querySelectorAll("video")).find(v=>v.className.includes("videoInner_")&&v.poster.includes("quests"));if(!video)return;function adjustPlaybackRate(){if(!isFinite(video.duration))return;const remaining=video.duration-video.currentTime;video.playbackRate=remaining<=5?1.0:10.0;}video.playbackRate=10.0;video.play().catch(console.error);video.addEventListener("timeupdate",adjustPlaybackRate);})();

動画クエストを開いてる状態でこれを実行すれば10倍速で再生されます。これで回収がクソ楽になりました
(Orbs以外の動画クエストでも動きます)

twitter→

discord→

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?