This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const affectedAccountUrls={}; | |
| const sleep=async(ms)=>new Promise(r=>setTimeout(r,ms)); | |
| const log=(...args)=>console.log('[blocker]',...args); | |
| const getTimeline=()=>{ | |
| const labels=['Timeline: Reposts','Timeline: Verified Followers','Timeline: Followers','Timeline: List members','Timeline: Search timeline']; | |
| for(const label of labels){ | |
| const t=document.querySelector(`[aria-label="${label}"]`); | |
| if(t){log('✅ timeline:',label);return t;} | |
| } |