Examine source code of Atlas

Inspect and view changes in Atlas 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,
  "name": "Atlas",
  "description": "Atlas is your AI web reader.",
  "homepage_url": "https://atlas.aetherlab.ai",
  "version": "0.0.0.24",
  "icons": {
    "16": "img/aether_16.png",
    "32": "img/aether_32.png",
    "256": "img/aether_256.png",
    "512": "img/aether_512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://docs.google.com/document/*"
      ],
      "run_at": "document_start",
      "js": [
        "gdocs.js"
      ],
      "world": "MAIN"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "side_panel": {
    "default_path": "index.html"
  },
  "action": {
    "default_icon": {
      "16": "img/aether_16.png",
      "32": "img/aether_32.png",
      "256": "img/aether_256.png",
      "512": "img/aether_512.png"
    },
    "default_title": "Atlas"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+1",
        "mac": "Command+Shift+1"
      }
    },
    "add_highlight_to_chat": {
      "description": "Add a highlight to the chat",
      "suggested_key": {
        "default": "Ctrl+Shift+L",
        "mac": "Command+Shift+L"
      }
    }
  },
  "permissions": [
    "activeTab",
    "tabs",
    "scripting",
    "sidePanel",
    "webNavigation",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>",
    "file:///*"
  ]
}