HappyPuppyDaily

HappyPuppyDaily

A puppy a day keeps the doctor away

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HappyPuppyDaily",
  "description": "A puppy a day keeps the doctor away",
  "version": "0.0.8",
  "manifest_version": 2,
  "homepage_url": "http://momane.com/",
  "chrome_url_overrides": {
    "newtab": "newTab.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.happypuppydaily.com/chrome/*",
        "*://www.happypuppydaily.com/Chrome/*"
      ],
      "js": [
        "lib/jquery-2.1.1.min.js",
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "img/logo.png",
    "128": "img/logo.png"
  },
  "web_accessible_resources": [
    "PuppyImages/*"
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}