The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#4
|
|||
|
|||
![]()
Made a jQuery script for fun which should download any images in threads.
Open up developer tools and execute the following in the console: HTML Code:
$(".postcontent img").each(function(index, val){
if($(val).attr('src').indexOf("smilie") === -1){
var a = $("<a>").attr("href", $(val).attr('src')).attr("download", $(val).attr('src').split("/")[$(val).attr('src').split("/").length - 1]).appendTo("body");
a[0].click();
a.remove();
}
});
|
Благодарность от: | ||
RichieBoy67 |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|