Initial implementation of Claude desktop app (Tauri v2)
Standalone native desktop app wrapping claude.ai with: - Direct webview navigation to claude.ai (not iframe) - System tray with close-to-tray behavior - Native notification bridge (JS overrides browser Notification API) - Navigation filter allowing only Claude, Anthropic, and OAuth domains - External links open in system browser - Session persistence via WebKitGTK cookies/localStorage - Builds .deb and AppImage bundles Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
commit
c024717934
17 changed files with 5757 additions and 0 deletions
16
src-tauri/capabilities/remote.json
Normal file
16
src-tauri/capabilities/remote.json
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"$schema": "../gen/schemas/desktop-schema.json",
|
||||
"identifier": "remote",
|
||||
"description": "Grants claude.ai IPC access for notifications",
|
||||
"remote": {
|
||||
"urls": ["https://claude.ai/*", "https://*.claude.ai/*"]
|
||||
},
|
||||
"permissions": [
|
||||
"core:default",
|
||||
"core:event:default",
|
||||
"notification:default",
|
||||
"notification:allow-is-permission-granted",
|
||||
"notification:allow-request-permission",
|
||||
"notification:allow-notify"
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue