Reddit Preload GIFs

Reddit Preload GIFs

Finds GIFs on Reddit and preloads them so that you do not need to wait when you view them

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Finds GIFs on Reddit and preloads them so that you do not need to wait when you view them",
  "name": "Reddit Preload GIFs",
  "permissions": [
    "http://reddit.com/*",
    "http://*.reddit.com/*"
  ],
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.reddit.com/*"
      ],
      "all_frames": true,
      "js": [
        "preload_gifs.js"
      ]
    }
  ],
  "manifest_version": 2,
  "version": "1.3"
}