Skip to content

Instantly share code, notes, and snippets.

Created March 23, 2015 17:19
Show Gist options
  • Save anonymous/2670f45bf656479c8d91 to your computer and use it in GitHub Desktop.
Save anonymous/2670f45bf656479c8d91 to your computer and use it in GitHub Desktop.
Block GIFs from looping on Imgur.com
// ==UserScript==
// @id imgur.com@scriptish
// @name prevent-gif-looping
// @version 1.0
// @namespace imgur.com
// @author Vinayak
// @description Block GIFs from looping on Imgur
// @include http*://imgur.com/*
// @run-at document-end
// ==/UserScript==
document.getElementsByTagName("video")[0].removeAttribute("loop");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment