Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. VERSION BUILD=844 RECORDER=CR
  2.  
  3. 'This macro can only be run on a fully loaded page with the updates that you want to remove loaded.'
  4. 'This macro also ignores all errors and needs to be stopped manually if it fails / gets stuck.'
  5. 'Future updates to facebook may break this code. Use at your own risk.'
  6.  
  7. PROMPT "Please enter the start position (POS):" POSITION
  8. SET DELAY 2 'modify this delay based on how quickly your browser loads prompts. For me anything less than 2 messed things up.'
  9. SET !ERRORIGNORE YES
  10.  
  11. 'these are the three post types that I had on my facebook "your posts" section.'
  12. TAG POS={{POSITION}} TYPE=SPAN ATTR=CLASS:_55pe&&TXT:
  13. TAG POS=1 TYPE=A ATTR=ID:u_jsonp_*_*
  14. TAG POS=1 TYPE=I ATTR=CLASS:mrs<SP>_2fmu<SP>img<SP>sp_Z2S2FUU_cP__2x<SP>sx_1216b8&&TXT:
  15.  
  16. WAIT SECONDS = {{DELAY}}
  17. TAG POS={{POSITION}} TYPE=SPAN ATTR=TXT:Delete
  18. WAIT SECONDS = {{DELAY}}
  19. TAG POS=1 TYPE=BUTTON FORM=ID:u_*_1 ATTR=TXT:Delete<SP>Post
  20. WAIT SECONDS = {{DELAY}}
  21.  
  22. 'copy from here to add more deletes into one macro'
  23. ADD POSITION 2
  24. TAG POS={{POSITION}} TYPE=SPAN ATTR=CLASS:_55pe&&TXT:
  25. TAG POS=1 TYPE=A ATTR=ID:u_jsonp_*_*
  26. TAG POS=1 TYPE=I ATTR=CLASS:mrs<SP>_2fmu<SP>img<SP>sp_Z2S2FUU_cP__2x<SP>sx_1216b8&&TXT:
  27.  
  28. WAIT SECONDS = {{DELAY}}
  29. TAG POS={{POSITION}} TYPE=SPAN ATTR=TXT:Delete
  30. WAIT SECONDS = {{DELAY}}
  31. TAG POS=1 TYPE=BUTTON FORM=ID:u_*_1 ATTR=TXT:Delete<SP>Post
  32. WAIT SECONDS = {{DELAY}}
  33. 'copy to here to add more deletes into one macro. paste below as many as you want to run.'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement