NASA Picture of the Day

NASA Picture of the Day

Sets your new tab page with a stunning new picture every day from NASA's Picture of the Day gallery.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NASA Picture of the Day",
  "short_name": "NASA_POTD",
  "description": "Sets your new tab page with a stunning new picture every day from NASA's Picture of the Day gallery.",
  "version": "0.1",
  "incognito": "split",
  "chrome_url_overrides": {
    "newtab": "page.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.min.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "icons": {
    "128": "icon.png"
  },
  "manifest_version": 2
}