You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apart from SixDegrees.com, which lasted from 1997 to 2001 only, Friendster, which was founded in 2002, is considered one of the original social networks. It was copied by MySpace (2003) due to the high user engagement and great potential for ad sales. MySpace, then again, while acquired for $580m by News Corporation in 2005, was overtaken by and ultimately lost to Facebook (2004) around 2009.
Twitter
Downloading photos and videos
// Browser bookmarklet (minified):
javascript:!function(){vare=document.querySelector("meta[property='og:video:url']");null===e&&(e=document.querySelector("meta[property='og:image']"));vart=e.content,o=document.querySelector("meta[property='og:url']").content.split("/").pop(),r=document.querySelector("meta[property='og:title']").content.replace(" on Twitter",""),n=document.createElement("a");n.href=t,n.download=r+"("+o+").jpg",n.innerHTML="",n.style.display="none",document.body.appendChild(n),n.click()}();// or// Original JavaScript function:(function(){varmetaElement=document.querySelector("meta[property='og:video:url']");if(metaElement===null){metaElement=document.querySelector("meta[property='og:image']");}varurl=metaElement.content;varid=document.querySelector("meta[property='og:url']").content.split("/").pop();vartitle=document.querySelector("meta[property='og:title']").content.replace(" on Twitter","");vardownloadLink=document.createElement("a");downloadLink.href=url;downloadLink.download=title+"("+id+").jpg";downloadLink.innerHTML="";downloadLink.style.display="none";document.body.appendChild(downloadLink);downloadLink.click();})();
Instagram
Downloading photos and videos
// Browser bookmarklet (minified):
javascript:!function(){vare=Object.values(window.__additionalData)[0].data.graphql.shortcode_media,d=e.video_url||e.display_url,a=e.id,n=e.owner.username,o=e.owner.id,i=document.createElement("a");i.href=d,i.download=n+"_-_"+o+"_-_"+a+".jpg",i.innerHTML="",i.style.display="none",document.body.appendChild(i),i.click()}();// or// Original JavaScript function:(function(){vardata=Object.values(window.__additionalData)[0].data.graphql.shortcode_media;varmediaUrl=data.video_url||data.display_url;varmediaId=data.id;varownerName=data.owner.username;varownerId=data.owner.id;vardownloadLink=document.createElement("a");downloadLink.href=mediaUrl;downloadLink.download=ownerName+"_-_"+ownerId+"_-_"+mediaId+".jpg";downloadLink.innerHTML="";downloadLink.style.display="none";document.body.appendChild(downloadLink);downloadLink.click();})();