Comcastify

Comcastify

Images are loading too quickly on the web, this extension fixes that issue

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Comcastify",
  "short_name": "Comcastify",
  "author": "Rick Beyer",
  "homepage_url": "https://github.com/fcbeyer/chrome-comcastify",
  "manifest_version": 2,
  "version": "1.0.0",
  "description": "Images are loading too quickly on the web, this extension fixes that issue",
  "browser_action": {
    "default_title": "Comcastify",
    "default_icon": "lib/images/icons/turtle16.png"
  },
  "icons": {
    "16": "lib/images/icons/turtle16.png",
    "48": "lib/images/icons/turtle48.png",
    "128": "lib/images/icons/turtle128.png"
  },
  "content_scripts": [
    {
      "js": [
        "lib/javascript/jquery.min.js",
        "lib/javascript/extension.js"
      ],
      "matches": [
        "http://*/*"
      ]
    }
  ]
}