Skip to content

feeloursoul/instagram_Photo_Downloader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 

Repository files navigation

Instagram_Photo_Downloader

javascript: (function() {
	const img = document.querySelector('article img');
	if (img) {
		const a = document.createElement('a');
		a.href = img.src;
		a.download = 'instagram_photo.jpg';
		document.body.appendChild(a);
		a.click();
		document.body.removeChild(a);
	} else {
		alert(
			'%E7%94%BB%E5%83%8F%E3%81%8C%E8%A6%8B%E3%81%A4%E3%81%8B%E3%82%8A%E3%81%BE%E3%81%9B%E3%82%93%E3%81%A7%E3%81%97%E3%81%9F%E3%80%82'
		);
	}
})();


Choose The Instagram Photo



image



Click bookmarklet on address box.



image



Right-click on the image you want to save.



image



GOOD JOB!!



image



Releases

No releases published

Packages

No packages published