Instagram image downloader

Adds a download link for instagram images in the one-image pages

  1. // ==UserScript==
  2. // @name Instagram image downloader
  3. // @namespace http://lbreda.com/
  4. // @version 1.2
  5. // @description Adds a download link for instagram images in the one-image pages
  6. // @author Lorenzo Breda
  7. // @license MIT
  8. // @match https://*.instagram.com/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. if(document.querySelector('meta[property="og:image"]') && document.querySelector('meta[property="og:image"]').content && !document.querySelector('meta[property="og:video"]')){
  16. var a = document.createElement('a');
  17. var container = document.querySelector('.ltpMr.Slqrh');
  18. a.href = document.querySelector('meta[property="og:image"]').content;
  19. a.style.width = '24px';
  20. a.style.height = '24px';
  21. a.style.margin = '8px';
  22. a.style.backgroundImage = "url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAAV1BMVEUAAAAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAec59cAAAAHHRSTlMAAQUHCQoRGBkcHz9AUFZecYCVqLTK0dPp7ff5cWDvugAAAG1JREFUKFPFjUcOgDAMBE0vCb0n/v87IZZBCeQIYuTDakfyAnxAqRFHn5B48IcIN7xoHNNfvcodEZxGFeDC5tGz8fRkbn1HT5YoaDKoKK8pCZ6dE4Cas7AF6mE5o3QE0cbmPGJqzQlr3IbH32IHtA8TFl6BBTUAAAAASUVORK5CYII=')";
  23. a.setAttribute('download','');
  24. container.appendChild(a);
  25. }
  26. })();