New Tab Random Quote

New Tab Random Quote

Override the 'new tab' page to randomly shows 1 of 1,000 interesting/inspiring quotes, or update it with your own.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "New Tab Random Quote",
  "version": "2.3",
  "description": "Override the 'new tab' page to randomly shows 1 of 1,000 interesting/inspiring quotes, or update it with your own.",
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "author": "Gabriel Krieshok",
  "chrome_url_overrides": {
    "newtab": "quote.html"
  },
  "options_page": "index.html",
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "quotelist.json"
  ]
}