Clock New Tab - Dashboard with ChatGPT

Clock New Tab - Dashboard with ChatGPT

Experience a new tab with creative clocks and a personal dashboard that focuses on your every day activity

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "version": "1.0.3",
  "default_locale": "en",
  "manifest_version": 2,
  "icons": {
    "32": "static/32.png",
    "64": "static/64.png",
    "128": "static/128.png"
  },
  "permissions": [
    "bookmarks",
    "storage",
    "unlimitedStorage",
    "https://sshot.org/*",
    "https://chat.openai.com/*",
    "chrome://favicon/*"
  ],
  "browser_action": {
    "default_title": "__MSG_title__"
  },
  "background": {
    "scripts": [
      "./js/background.js"
    ]
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "static/*",
    "assets/*.svg",
    "assets/*.png",
    "assets/*.css",
    "assets/*.otf"
  ]
}