This file contains 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
/* Author: Branger_Briz | |
....***.... | |
dXXXXXXXXXXXXXXXb | |
dXXXXXXXXXXXXXXXXXXb. | |
,dXXXXXXXXXXXXXXXXXXXXXb. | |
dXXXXXXXXXXXXXXXXXXXXXXXXb. | |
^ 9XXXP"`V```~VVVVV~''V''dXXXP ^ | |
dX\ . )XP )XXX( 9XP . /XP | |
9X\/\ |XP .9X^XXP \P /\/\XXP | |
9X \XP' __/XP/\XXX\___ 9/X/ XXP' |
This file contains 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
<?php | |
if( preg_match('/iphone|android/i', $_SERVER['HTTP_USER_AGENT']) ) { | |
include('index-mobile.html'); | |
} | |
else { | |
include('index-desktop.html'); | |
} | |
?> |
This file contains 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
// PASTE THIS IN YOUR CONSOLE ( worx best in chrome ) | |
// `~._.~`~._.~`~._.~`~._.~`~._.~`~._.~`~._.~`~._.~ | |
// chrome console: OPTION + COMMAND + J | |
// firefox console: OPTION + COMMAND + K | |
// `~._.~`~._.~`~._.~`~._.~`~._.~`~._.~`~._.~`~._.~ | |
// WARNING FLASHING LIGHTS!!!! | |
setInterval(function(){ | |
d=document.getElementsByTagName('div'); | |
for(i=0; i<d.length; i++) { |
This file contains 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
var pheight = 0; | |
function quickScroll(){ | |
if(pheight < document.height){ | |
pheight = document.height; | |
window.scrollBy(0, document.height); | |
setTimeout(quickScroll, 500); // adjust incase ajax is slow | |
} | |
}quickScroll(); |
This file contains 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
var imgHTML = []; | |
var imgs = document.querySelectorAll(".fbPhotoStarGridElement"); | |
imgs.forEach((el, i)=>{ | |
imgHTML.push('<img src="'+el.getAttribute('data-starred-src')+'">'); | |
}); | |
document.body.innerHTML = imgHTML; |
This file contains 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
$( "input[name|='untag']" ).click(); |
This file contains 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
$('span').each(function( i ) { | |
if( $(this).html() == 'Leave Group'){ | |
$(this).click(); | |
} | |
}); |
This file contains 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
$('button').each(function( i ) { | |
if( $(this).html() == 'Leave Group'){ $(this).click(); } | |
}); |
This file contains 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
var edit = $('.uiPopover > a'); | |
for (var i = 0; i < edit.length; i++) { edit[i].click(); }; |
This file contains 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
$('span').each(function( i ) { | |
if( $(this).html() == 'Report'){ $(this).click(); } | |
if( $(this).html() == 'Report/Remove Tag'){ $(this).click(); } | |
if( $(this).html() == 'Remove Tag...'){ $(this).click(); } | |
if( $(this).html() == 'Delete This Photo'){ $(this).click(); } | |
if( $(this).html() == 'Delete'){ $(this).click(); } | |
if( $(this).html() == 'Delete...'){ $(this).click(); } | |
if( $(this).html() == 'Unlike'){ $(this).click(); } | |
}); |
OlderNewer