{"id":13800679,"url":"https://github.com/shumingch/gnome-email-notifications","last_synced_at":"2026-02-16T00:07:17.846Z","repository":{"id":21196296,"uuid":"91898245","full_name":"shumingch/gnome-email-notifications","owner":"shumingch","description":"Gnome Email Notifications","archived":false,"fork":false,"pushed_at":"2023-08-02T05:34:39.000Z","size":433,"stargazers_count":85,"open_issues_count":12,"forks_count":19,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-05-13T09:41:18.449Z","etag":null,"topics":["email","gmail","gmail-notifier","gnome","gnome-shell","gnome-shell-extension","notifications","outlook"],"latest_commit_sha":null,"homepage":"https://extensions.gnome.org/extension/1230/gmail-message-tray/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shumingch.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2017-05-20T15:29:28.000Z","updated_at":"2024-09-25T20:22:09.000Z","dependencies_parsed_at":"2024-01-05T20:50:52.291Z","dependency_job_id":"94713b2e-1d5e-4cff-8299-d2c196767ff2","html_url":"https://github.com/shumingch/gnome-email-notifications","commit_stats":null,"previous_names":["shumingch/gmailmessagetray"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/shumingch/gnome-email-notifications","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shumingch%2Fgnome-email-notifications","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shumingch%2Fgnome-email-notifications/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shumingch%2Fgnome-email-notifications/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shumingch%2Fgnome-email-notifications/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shumingch","download_url":"https://codeload.github.com/shumingch/gnome-email-notifications/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shumingch%2Fgnome-email-notifications/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29494340,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T00:00:57.352Z","status":"ssl_error","status_checked_at":"2026-02-15T23:56:34.338Z","response_time":118,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["email","gmail","gmail-notifier","gnome","gnome-shell","gnome-shell-extension","notifications","outlook"],"created_at":"2024-08-04T00:01:15.051Z","updated_at":"2026-02-16T00:07:17.840Z","avatar_url":"https://github.com/shumingch.png","language":"JavaScript","funding_links":[],"categories":["Extensions"],"sub_categories":["Services integration"],"readme":"# Gnome Email Notifications\n\nUtilizes Gnome Online Accounts to login to Gmail/Outlook and check your incoming email.\n\n## Features\n- Gmail and Outlook (Microsoft 365) support via GNOME Online Accounts (GOA).\n- Native GNOME Shell notifications with message tray integration.\n\n## Installation\n\n1. Install gnome-shell version 45 or later.\n2. Install `gir1.2-goa` (GNOME Online Accounts GObject Introspection):\n   ```bash\n   sudo apt install gir1.2-goa-1.0\n   ```\n3. Sign in with your Google and/or Microsoft account in **GNOME Settings \u003e Online Accounts**.\n4. Either install from [GNOME Extensions](https://extensions.gnome.org/extension/1230/gmail-message-tray/) OR local install:\n   ```bash\n   git clone https://github.com/shumingch/gnome-email-notifications ~/.local/share/gnome-shell/extensions/GmailMessageTray@shuming0207.gmail.com\n   ```\n\n## Contributing\n\nWe welcome contributions! Here is how to get started:\n\n### Repository Structure\n- `extension.js`: Main entry point for the extension.\n- `EmailAccount.js`: Manages GOA accounts and orchestrates scanners/notifiers.\n- `InboxScanner.js`: Logic for scanning both Gmail and Outlook.\n- `Notifier.js`: Handles opening URLs and managing notification state.\n- `NotificationFactory.js`: Low-level GNOME Shell notification creation.\n- `Conf.js`: Settings management.\n- `tests/`: Extensive unit test suite with mocks.\n- `scripts/`: Development utility scripts.\n\n### Development Workflow\n1. **Setup**: Clone the repo.\n2. **Testing**: We use a custom mocking framework to test logic without a full GNOME Shell environment.\n   ```bash\n   gjs -m tests/run_tests.js\n   ```\n   Copy the output to your extensions folder.\n   ```bash\n   sudo cp -r . ~/.local/share/gnome-shell/extensions/GmailMessageTray@shuming0207.gmail.com/\n   ```\n3. **Packaging**: Use the provided script to create a production-ready zip (excludes tests/CI/etc).\n   ```bash\n   ./scripts/zip.sh\n   ```\n\n### Troubleshooting \u0026 Logs\n- **Journal Logs**: See logs:\n  ```bash\n  journalctl | grep \"Gnome Email Notifications\"\n  ```\n  or \n  ```bash\n  journalctl | grep \"GmailMessageTray\"\n  ```\n- **Reset Settings**: If you're having issues, you can reset the extension's settings to their defaults:\n  ```bash\n  dconf reset -f /org/gnome/shell/extensions/gmailmessagetray/\n  ``` \n\n## Screenshot\n\n![Gnome Email Notifications](screenshot.png \"Gnome Email Notifications\")\n\n## License\nGPL-2.0-or-later\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshumingch%2Fgnome-email-notifications","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshumingch%2Fgnome-email-notifications","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshumingch%2Fgnome-email-notifications/lists"}