FrontPageNYT

FrontPageNYT

Get the latest New York Times headline every time you open a new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FrontPageNYT",
  "short_name": "FPNYT",
  "description": "Get the latest New York Times headline every time you open a new tab.",
  "version": "1.2",
  "homepage_url": "https://shivankaul.com",
  "chrome_url_overrides": {
    "newtab": "src/index.html"
  },
  "icons": {
    "128": "images/fp.png"
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/fp.png",
      "32": "images/fp.png"
    },
    "default_title": "FrontPageNYT: Get headlines from NYT",
    "default_popup": "src/options/options.html"
  },
  "options_ui": {
    "page": "src/options/options.html",
    "chrome_style": true
  },
  "background": {
    "scripts": [
      "src/js/jquery-1.11.2.min.js",
      "src/js/headline.js"
    ]
  }
}