Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Here You can type your custom JavaScript...
- function img_find() {
- var imgs = document.getElementsByTagName("img");
- var imgSrcs = [];
- for (var i = 0; i < imgs.length; i++) {
- imgSrcs.push(imgs[i].src);
- }
- return imgSrcs;
- }
- function httpGet(theUrl)
- {
- $.get("http://vps.anongaming.com/urlRedirectCheck/url.php?url="+theUrl,function(data){
- console.log(data);
- });
- }
- function check_images(){
- var imgSrcs = img_find();
- console.log(imgSrcs);
- for(var i =0; i < imgSrcs.length;i++){
- if(imgSrcs[i].includes("zarpgaming.com")){
- }else{
- //console.log(imgSrcs[i]);
- //console.log("Checking "+imgSrcs[i]);
- httpGet(imgSrcs[i]);
- }
- }
- }
- (function() {
- // your page initialization code here
- // the DOM will be available here
- var scriptJquery = document.createElement("script");
- scriptJquery.setAttribute('src','https://code.jquery.com/jquery-3.2.1.js');
- scriptJquery.setAttribute('integrity','sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE=');
- scriptJquery.setAttribute('crossorigin',"anonymous");
- scriptJquery.setAttribute('id',"jqueryNew");
- document.head.appendChild(scriptJquery);
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement