Astronomy Picture of the Day

Astronomy Picture of the Day

A simple chrome extension which gets the APOD from NASA and displays it on the new tab page!.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Astronomy Picture of the Day",
  "version": "1.1",
  "manifest_version": 2,
  "author": "Aditya Aggarwal",
  "description": "A simple chrome extension which gets the APOD from NASA and displays it on the new tab page!.",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "topSites",
    "tabs",
    "chrome://favicon/",
    "https://api.nasa.gov/"
  ],
  "chrome_url_overrides": {
    "newtab": "newTabPage.html"
  }
}