Top Sites

Top Sites

A new tab that shows your top sites. Inspired by a very old version of Chrome's new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Top Sites",
  "version": "1.0.2",
  "manifest_version": 2,
  "description": "A new tab that shows your top sites. Inspired by a very old version of Chrome's new tab.",
  "permissions": [
    "topSites"
  ],
  "web_accessible_resources": [
    "src/newtab.js"
  ],
  "chrome_url_overrides": {
    "newtab": "src/newtab.html"
  },
  "icons": {
    "16": "src/icons/browser16.png",
    "32": "src/icons/browser32.png",
    "128": "src/icons/browser128.png"
  }
}