There are minimum working site with automatic deployment already set up. Choose repository of your choice and get started right away!
Creating repository from a template by clicking Use this template > Create a new repository
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
// popcat auto-clicker | |
// by rayriffy | |
// drop this into DevTools console | |
// to run: | |
// let agent = clicker() | |
// | |
// to stop: | |
// agent.stop() |
let getAllNameInMeeting = () => Array.from(document.querySelector('calling-roster-section[data-tid=participantsInCall]').querySelectorAll('div.name > span')).map(o => o.textContent.toLowerCase()) | |
let leaveIfSomeoneLeave = (name) => { | |
try { | |
const lowerCaseNames = getAllNameInMeeting() | |
// if not found, then leave | |
if (!lowerCaseNames.includes(name)) { | |
console.log(`[leaveIfSomeoneLeave] "${name}" is leaving! stopping the call`) | |
document.querySelector('#hangup-button').click() |
Apple Homepod Mini - https://shopee.co.th/product/62719/5770519314
Aqara Hub M1S (+ Aqara Motion Sensor) - https://shopee.co.th/product/302260250/4560724849
Aqara Wall Switch D1 (No neutral wire) - https://shopee.co.th/product/34671550/6525376154
Aqara Door/Window Sensor - https://shopee.co.th/product/302260250/6757471366
Array.from({ length: document.querySelectorAll('div.card-backPicture').length / 2 }) | |
.map((_, i) => [...document.querySelectorAll(`div.card-backPicture`)].filter(el => el.style.backgroundImage === `url("./images/master/score-${String(i + 1).padStart(2, '0')}.jpg")`)) | |
.reduce((promise, pair) => { | |
return promise.then(() => { | |
return new Promise(resolve => { | |
setTimeout(() => { | |
resolve(pair.map(el => el.click())) | |
}, 3000); | |
}) | |
}) |
_人人人人人人人人人人人人_ | |
> 害悪プレイヤーの流儀 < | |
> 毒★麻痺★眠り < | |
 ̄Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^ ̄ |
I hereby claim:
To claim this, I am signing this object:
# STRICT ORIGIN WHEN CROSS ORIGIN | |
add_header X-Frame-Options "SAMEORIGIN" always; | |
add_header X-XSS-Protection "1; mode=block" always; | |
add_header X-Content-Type-Options "nosniff" always; | |
add_header Referrer-Policy "strict-origin-when-cross-origin" always; | |
add_header Content-Security-Policy "default-src * data: 'unsafe-eval' 'unsafe-inline'" always; |