Startuphack New Tab Page Extension

Startuphack New Tab Page Extension

A Chrome extension that shows the latest posts from Startuphack, Hackernews, Techcrunch and ProductHunt on your new tab page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Startuphack New Tab Page Extension",
  "short_name": "Startuphack",
  "description": "A Chrome extension that shows the latest posts from Startuphack, Hackernews, Techcrunch and ProductHunt on your new tab page",
  "version": "1.0.1",
  "manifest_version": 2,
  "options_page": "options.html",
  "icons": {
    "16": "images/icon-16px.png",
    "48": "images/icon-48px.png",
    "128": "images/icon-128px.png"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "permissions": [
    "tabs",
    "topSites",
    "bookmarks",
    "https://*/",
    "http://*/",
    "http://*/*",
    "https://*/*"
  ]
}