Imgur Extender

Imgur Extender

Hopefully people will stop bothering @Sarah for new loading gifs every 30 seconds

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Imgur Extender",
  "short_name": "iX",
  "description": "Hopefully people will stop bothering @Sarah for new loading gifs every 30 seconds",
  "version": "1.9",
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "64": "icon/64.png",
    "128": "icon/128.png",
    "256": "icon/256.png",
    "512": "icon/512.png"
  },
  "options_page": "Settings/settings.html",
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "*://imgur.com/*",
    "*://*.imgur.com/*",
    "declarativeContent"
  ],
  "web_accessible_resources": [
    "icon/*.png"
  ],
  "page_action": {
    "default_icon": "icon/16-bw.png",
    "default_title": "imgur Extender"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "*://*.imgur.com/*",
        "*://imgur.com/*"
      ],
      "js": [
        "Settings/assets/js/jquery-2.1.3.min.js",
        "replaceloader.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}