Greasy Fork is available in English.

Unfuck Instagram

View Instagram images without javascript. Just the image, please.

  1. // ==UserScript==
  2. // @name Unfuck Instagram
  3. // @description View Instagram images without javascript. Just the image, please.
  4. // @namespace halcyon1234
  5. // @include http://instagram.com/p/*
  6. // @version 1
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. $elms = document.getElementsByTagName("meta");
  11.  
  12.  
  13. for(i = 0; i < $elms.length; i++)
  14. {
  15. $elm = $elms[i];
  16. if ($elm.getAttribute("property") == "og:image")
  17. {
  18. img = document.createElement("img");
  19. img.src = $elm.getAttribute("content");
  20. document.body.appendChild(img);
  21. }
  22. }