LoginSignup
0
1

More than 1 year has passed since last update.

slide shareでスライドが読めない時の対処法

Posted at

自分用メモ

デベロッパーツールを起動してスライドのURLを取得。
ScriptAutoRunnerを拡張機能に追加。
以下のコードをscriptautorunnerで使用。

document.onkeydown = function(e) {
    var url_num = Number(location.href.replace("https://image.slidesharecdn.com/android2021public-210426074623/95/21-android-","").replace("-638.jpg?cb=1619423355",""));

    if (event) {
        if (event.keyCode == 13) {
            var next_num = url_num + 1;

            location.href = 'https://image.slidesharecdn.com/android2021public-210426074623/95/21-android-' + String(next_num) + "-638.jpg?cb=1619423355";
        } 
    }
};

enterを押したら次のスライドに行く。

0
1
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
1