javascript/ Facebook 自動回戳 簡單小程式* Author by Kan-Tai Zeng*/let counter = 0;let interval = setInterval(function () {// do your thingdocument.querySelector('#poke_live_new .selected').click();counter++;console.log('戳戳次數: ' + counter);}, 1000);
javascript
`/ Facebook 自動回戳 簡單小程式
* Author by Kan-Tai Zeng
*/
let counter = 0;
let interval = setInterval(function () {
// do your thing
document.querySelector('#poke_live_new .selected').click();
counter++;
console.log('戳戳次數: ' + counter);
}, 1000);