GoogleGifs

Automatically plays gifs on google pages

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!)

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!)

// ==UserScript==
// @name         GoogleGifs
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Automatically plays gifs on google pages
// @author       Ian Pearce (@peeinears)
// @match        https://www.google.com/*
// @grant        MIT
// ==/UserScript==


// This script is originally from an extension called GoogleGifs by Ian Pearce, hence I have credited him as the author. I have merely turned it into a userscript because the extension was removed from Chrome's webstore.

(function() {
    'use strict';

    function playGIFs() {
        var els, i, a, img, matches, url;
        els = document.getElementsByClassName('rg_di');
        for (i = 0; i < els.length; i++) {
            if (els[i].animated) continue;
            els[i].animated = true;
            a = els[i].getElementsByTagName('a')[0];
            if (!a) continue;
            img = els[i].getElementsByTagName('img')[0];
            if (!img) continue;
            matches = a.href.match(/imgurl=(\S+?)(&|$)/i);
            if (matches !== null && matches.length > 1) {
                url = unescape(unescape(matches[1]));
                if (/\.gif(\?.*)?$/i.test(url)) {
                    img.src = url;
                }
            }
        }
  }

  // continue to load GIFs added to DOM after initial page load
  window.setInterval(playGIFs, 1000);
})();