{"id":18764096,"url":"https://github.com/oddbit/firebase-alerts","last_synced_at":"2025-06-28T02:05:20.763Z","repository":{"id":62632353,"uuid":"556242197","full_name":"oddbit/firebase-alerts","owner":"oddbit","description":"Firebase extension for sending Firebase Alerts to social platforms","archived":false,"fork":false,"pushed_at":"2025-02-13T04:51:47.000Z","size":1590,"stargazers_count":12,"open_issues_count":6,"forks_count":1,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-05-07T19:02:16.757Z","etag":null,"topics":["crashlytics","discord-notifications","firebase","firebase-crashlytics","firebase-extensions","google-chat","google-chat-notifications","slack-notification","slack-notifications","slack-webhook"],"latest_commit_sha":null,"homepage":"https://extensions.dev/extensions/oddbit/firebase-alerts","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/oddbit.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-10-23T11:58:53.000Z","updated_at":"2025-02-13T04:51:51.000Z","dependencies_parsed_at":"2024-02-12T04:25:06.603Z","dependency_job_id":"057fea9d-f649-4427-a836-88f1689b56a0","html_url":"https://github.com/oddbit/firebase-alerts","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/oddbit/firebase-alerts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oddbit%2Ffirebase-alerts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oddbit%2Ffirebase-alerts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oddbit%2Ffirebase-alerts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oddbit%2Ffirebase-alerts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oddbit","download_url":"https://codeload.github.com/oddbit/firebase-alerts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oddbit%2Ffirebase-alerts/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262362064,"owners_count":23299122,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["crashlytics","discord-notifications","firebase","firebase-crashlytics","firebase-extensions","google-chat","google-chat-notifications","slack-notification","slack-notifications","slack-webhook"],"created_at":"2024-11-07T18:28:42.346Z","updated_at":"2025-06-28T02:05:20.742Z","avatar_url":"https://github.com/oddbit.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# About\n\nEmpower your team with timely Firebase notifications sent directly to your preferred communication platform.\n\n## Key Features\n\n- **Alerts:** Receive immediate notifications, enabling rapid debugging and issue resolution.\n- **Flexible Webhook Support:** Easily integrates with popular platforms like:\n  - Slack\n  - Discord\n  - Google Chat\n- **Extensible:** Readily build custom webhook plugins to connect with other notification channels.\n- **Roadmap:** We're actively evolving to make the alerts and notifications more helpful. See our [roadmap](https://github.com/oddbit/firebase-alerts/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement) for more info.\n\n| Platform    | App Distribution | Crashlytics | Performance |\n| ----------- | :--------------: | :---------: | :---------: |\n| Google Chat |        ✅        |     ✅      |     ✅      |\n| Slack       |        ✅        |     ✅      |     ✅      |\n| Discord     |        ✅        |     ✅      |     ✅      |\n| MS Teams    |        ❌        |     ❌      |     ❌      |\n\n## Screenshots\n\n|                                                                App Distribution                                                                |                                                              Crashlytics                                                              |                                                                 Performance                                                                 |\n| :--------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------: |\n| ![Google Chat App Distribution New Device](https://github.com/oddbit/firebase-alerts/raw/main/doc/images/message-google-chat-app-dist-new.png) | ![Google Chat Crashlytics Message](https://github.com/oddbit/firebase-alerts/raw/main/doc/images/message-google-chat-crashlytics.png) | ![Google Chat Performance Alert Message](https://github.com/oddbit/firebase-alerts/raw/main/doc/images/message-google-chat-performance.png) |\n\n# Installation\n\nInstall the Firebase Alerts extension using the Firebase CLI or the Firebase console.\n\n## Install using CLI\n\nYou can install this extension from source by forking the repository and run the\nfollowing command from your Firebase project root.\n\n```bash\nfirebase ext:install oddbit/firebase-alerts\nfirebase deploy --only extensions\n```\n\nRead the [PREINSTALL](./PREINSTALL.md) and [POSTINSTALL](./POSTINSTALL.md) instructions\nfor further information and requirements.\n\n# Getting involved\n\nIf you're reading this, you're awesome!\n\nWe welcome your contributions! If you'd like to suggest new features or platforms:\n[Open an issue](https://github.com/oddbit/firebase-alerts/issues/new) on our GitHub repository\nafter searching to find if your idea or feedback has already been posted.\n\n## Building webhook plugins\n\nIt's easy and fun to develop new webhook plugins. All you need to do is to\ndeclare your new plugin and create a new class that extends the abstract\n[`Webhook`](./functions/src/models/webhook.ts)\n\nHave a look at the existing plugin(s) under [`functions/src/webhook-plugins/`](https://github.com/oddbit/firebase-alerts/tree/main/functions/src/webhook-plugins)\nto see how an implementation can look like.\n\nCreate your new plugin alongside the existing plugins `your-new-plugin.ts`\n\n```typescript\nexport class YourNewPluginWebhook extends Webhook {\n  // Implements Webhook\n}\n```\n\nRegistering the new plugin in the method [`webhookPluginFromUrl()`](https://github.com/oddbit/firebase-alerts/blob/main/functions/src/alerts/crashlytics.ts).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foddbit%2Ffirebase-alerts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foddbit%2Ffirebase-alerts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foddbit%2Ffirebase-alerts/lists"}