Examine source code of New Tab for Google Workspace™

Inspect and view changes in New Tab for Google Workspace™ source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2.5.3.67",
  "name": "__MSG_name__",
  "default_locale": "en",
  "description": "__MSG_description__",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "icons": {
    "16": "images/g-suite-icon-16.png",
    "48": "images/g-suite-icon-48.png",
    "128": "images/g-suite-icon-128.png"
  },
  "action": {
    "default_icon": "images/g-suite-icon-48.png"
  },
  "background": {
    "service_worker": "./js/background.js",
    "type": "module"
  },
  "chrome_url_overrides": {
    "newtab": "index.vulcanized.html"
  },
  "permissions": [
    "bookmarks",
    "management",
    "storage",
    "https://gsuite-app.com/",
    "history",
    "topSites"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "_favicon/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": [
        "*"
      ]
    }
  ]
}