Download Instagram Image

Add button Download for an Instagram Image

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

Advertisement:

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Advertisement:

// ==UserScript==
// @name        Download Instagram Image
// @author m4x
// @match   https://www.instagram.com/p/*
// @description Add button Download for an Instagram Image
// @version     1.2
// @grant       none
// @namespace https://www.instagram.com/p/*
// ==/UserScript==

var header = document.getElementsByClassName('_7b8eu _9dpug')[0];
var img = document.getElementsByClassName('_2di5p')[0];
var imgUrl = img.getAttribute('src');
var buttonDown = document.createElement('a');
buttonDown.innerText = 'Download';
buttonDown.setAttribute('id', 'buttonDown');
buttonDown.setAttribute('href', imgUrl);
header.appendChild(buttonDown);