Gif Delayer

Gif Delayer

Gif Delayer delays playing gifs until they are fully downloaded.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gif Delayer",
  "version": "0.1.1",
  "manifest_version": 2,
  "description": "Gif Delayer delays playing gifs until they are fully downloaded.",
  "homepage_url": "https://github.com/octatone/Gif-Delayer",
  "icons": {
    "48": "src/icons/icon48.png",
    "128": "src/icons/icon128.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "src/inject/inject.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/inject/vendor/jquery-2.0.3.js",
        "src/inject/inject.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background/background.js"
    ]
  },
  "permissions": [
    "webRequest",
    "*://*/"
  ]
}