Nice APOD

Nice APOD

A nicer looking Astronomy Picture of the Day from NASA

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Nice APOD",
  "description": "A nicer looking Astronomy Picture of the Day from NASA",
  "version": "0.1",
  "minimum_chrome_version": "23",
  "icons": {
    "16": "images/logo16.png",
    "128": "images/logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://apod.nasa.gov/apod/*"
      ],
      "css": [
        "css/main.css"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "http://apod.nasa.gov/apod/*"
  ]
}