2
0

More than 3 years have passed since last update.

仕様変更に負けないでWeb版のTinderで自動スワイプする

Last updated at Posted at 2021-08-08

非エンジニアの方も自動スワイプしましょう
他の記事もたくさんあると思いますが、仕様に負けないように一手間加えます

ブラウザでスワイプする画面を開く

Likeボタンを右クリックして開発者ツールを開く

image.png

buttonタグを探す

image.png

末尾をこのように変更

image.png

consoleタブに下記をコピペ

auto = setInterval(
    function () {
        document.getElementById('tinder').click();
    }, 1500)
2
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
2
0