Twitterいいね爆撃

Twitterいいね爆撃します。

作者のサイトでサポートを受ける。または、このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         Twitterいいね爆撃
// @namespace    https://twitter.com/yosshi9990
// @version      1.0
// @description  Twitterいいね爆撃します。
// @author       元祖のヨッシー
// @match        *://twitter.com/*
// @grant        none
// @compatible   vivaldi
// @compatible   chrome
// @compatible   firefox
// @compatible   edge
// @icon https://abs.twimg.com/responsive-web/client-web/icon-ios.b1fc727a.png
// @supportURL   https://twitter.com/messages/compose?recipient_id=1183000451714703361
// @contributionURL https://www.youtube.com/@gansonoyoshi?sub_confirmation=1
// @license MIT
// ==/UserScript==

(function() {
       window.setInterval(function(){
        let basea=document.querySelectorAll('[class="css-175oi2r r-1777fci r-bt1l66 r-bztko3 r-lrvibr r-1loqt21 r-1ny4l3l"]');
        basea.forEach(function (vaka, inde) {
            window.scrollTo({top: vaka.getBoundingClientRect().top+window.pageYOffset, left: 0, behavior: 'instant'});
            if(vaka.getAttribute("data-testid")=="like"){
                vaka.click();
            }
        });
    }, 100);
})();