Ultimate New Tab with Calendar and ChatGPT

Ultimate New Tab with Calendar and ChatGPT

Best new tab browser extension with ChatGPT Sidebar, Calendar, Google Tasks, Google Keep, Todoist, TickTick, Outlook, Translate

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appDesc__",
  "description": "__MSG_appDesc__",
  "manifest_version": 3,
  "default_locale": "en",
  "content_security_policy": {
    "content_scripts": "font-src 'self' data:; script-src 'self'; object-src 'self'; worker-src 'self'",
    "extension_pages": "font-src 'self' data:; script-src 'self'; object-src 'self'; worker-src 'self'"
  },
  "commands": {
    "commandToggleSidebar": {
      "suggested_key": {
        "windows": "Alt+X",
        "mac": "Alt+X",
        "chromeos": "Alt+X",
        "linux": "Alt+X"
      },
      "description": "ToggleSidebar"
    },
    "commandToggleCutTheClutter": {
      "suggested_key": {
        "windows": "Alt+C",
        "mac": "Alt+C",
        "chromeos": "Alt+C",
        "linux": "Alt+C"
      },
      "description": "WebpageCutTheClutter"
    }
  },
  "version": "3.0.1",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAig79E1GZZDDBVuFkE3LRiQgtCplffmADFiJDqokKFQgycZFJJvI54kZ3EPRJVd6LwzR9ZIUoPtnJQba7cR6NB5ITQt964vieg6BEvXPM+fOaXKFVpGyirUqdtG6OyA6MwxMoU1lRkigfxhqewHDPooeqppp5q/C9tIdXP5ZmkMXskRUW1ACVjGI0e+oDTxa+sG2gZrSgRi5HCoaMFDbyEay1xaqt9HimjEVTpe4DERWdrR8RnZU+ShCRA1w6DJHPl9Yafb09kLZPw+3vlB7n9+iCYQDPQL+/h7mAg1BSi9fKJcnO5YswOIDDo2GF7wqiETFopSSoQIHWCSRXallX9wIDAQAB",
  "icons": {
    "16": "assets/apps/nova/icon_128.png",
    "32": "assets/apps/nova/icon_128_white.png",
    "48": "assets/apps/nova/icon_128.png",
    "128": "assets/apps/nova/icon_128.png"
  },
  "oauth2": {
    "client_id": "990704142214-rn5fjh3hb70apt6o6c38d7sks552eafe.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile",
      "https://www.googleapis.com/auth/calendar",
      "https://www.googleapis.com/auth/tasks"
    ]
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "_favicon/*",
        "assets/*",
        "localization/*",
        "contentScript/*",
        "*"
      ],
      "use_dynamic_url": false
    }
  ],
  "action": {
    "default_icon": {
      "16": "assets/apps/nova/icon_128_white.png",
      "32": "assets/apps/nova/icon_128_white.png",
      "48": "assets/apps/nova/icon_128.png",
      "128": "assets/apps/nova/icon_128.png"
    }
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "side_panel": {
    "default_path": "sidePanel.html"
  },
  "permissions": [
    "storage",
    "cookies",
    "unlimitedStorage",
    "bookmarks",
    "contextMenus",
    "topSites",
    "alarms",
    "sidePanel",
    "notifications"
  ],
  "host_permissions": [],
  "optional_permissions": [
    "history",
    "downloads",
    "favicon",
    "tabs",
    "scripting",
    "declarativeNetRequestWithHostAccess",
    "identity"
  ],
  "optional_host_permissions": [
    "<all_urls>"
  ]
}