Guest User

Untitled

a guest
May 28th, 2018
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. document.addEventListener(
  2. 'load',
  3. function (e) {
  4. var imgs=document.getElementsByTagName("img");
  5. for(i in imgs){
  6. if (imgs[i].src.match(/http:\/\/profile\.ak\.facebook\.com\/.+\/\d+\/\d+\/.\d+_\d+\.jpg/)) {
  7. imgs[i].src = imgs[i].src.replace(/(http:\/\/profile\.ak\.facebook\.com\/.+\/\d+\/\d+\/)(.)(\d+_\d+\.jpg)/g, "$1n$3");
  8. imgs[i].style.width = "200px";
  9. imgs[i].style.height = "auto";
  10. }
  11. }
  12. },
  13. false
  14. );
Add Comment
Please, Sign In to add comment