Tiny Tasks - New Tab

Tiny Tasks - New Tab

Tiny Tasks, beautiful backgrounds. Simply open a new tab and plan your day.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tiny Tasks - New Tab",
  "short_name": "Tiny Tasks",
  "version": "31",
  "manifest_version": 3,
  "author": "Fabian Kutschera",
  "description": "Tiny Tasks, beautiful backgrounds. Simply open a new tab and plan your day.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_title": "Tiny Tasks"
  },
  "offline_enabled": true,
  "default_locale": "en",
  "background": {
    "service_worker": "src/bg/background.js"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "commands": {
    "toggle-feature-foo": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Toggle feature foo"
    }
  },
  "permissions": [
    "topSites",
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "https://firebasestorage.googleapis.com/*/"
  ]
}