New Tab Studio: widgets in a new tab

New Tab Studio: widgets in a new tab

New tab widgets: Pretty background, Countdown timer, Todo List, Habit tracker, Notes, Dashboard, Photos, Clock, Deadline, Dark theme

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "short_name": "New Tab Studio",
  "author": "Viktor Magaev",
  "description": "__MSG_appDesc__",
  "version": "3.5.1",
  "icons": {
    "128": "128.png"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "permissions": [
    "unlimitedStorage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "offline_enabled": true,
  "optional_permissions": [
    "topSites",
    "chrome://favicon/",
    "bookmarks",
    "<all_urls>"
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "default_locale": "en"
}