{"id":50762453,"url":"https://github.com/devlinduldulao/fb-messenger-notifications-creator","last_synced_at":"2026-06-11T11:02:11.438Z","repository":{"id":336814196,"uuid":"1151166136","full_name":"devlinduldulao/fb-messenger-notifications-creator","owner":"devlinduldulao","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-05T14:50:09.000Z","size":168,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-01T19:07:26.421Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devlinduldulao.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-06T06:03:54.000Z","updated_at":"2026-04-05T14:50:12.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/devlinduldulao/fb-messenger-notifications-creator","commit_stats":null,"previous_names":["devlinduldulao/fb-messenger-notifications-creator"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devlinduldulao/fb-messenger-notifications-creator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlinduldulao%2Ffb-messenger-notifications-creator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlinduldulao%2Ffb-messenger-notifications-creator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlinduldulao%2Ffb-messenger-notifications-creator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlinduldulao%2Ffb-messenger-notifications-creator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devlinduldulao","download_url":"https://codeload.github.com/devlinduldulao/fb-messenger-notifications-creator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlinduldulao%2Ffb-messenger-notifications-creator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34195117,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2026-06-11T11:02:10.435Z","updated_at":"2026-06-11T11:02:11.433Z","avatar_url":"https://github.com/devlinduldulao.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Messenger Notifications\n\nGet desktop notifications when you receive new Facebook Messenger messages. Never miss an important message!\n\n## Features\n\n- **Desktop Notifications**: Get instant visual notifications for new messages\n- **Badge Counter**: Red badge on the extension icon shows unread message count\n- **Silent Mode Toggle**: Easily turn off notifications when you need to focus\n- **Click to Open**: Click the notification to jump directly to Messenger\n- **Auto-Clear Badge**: Badge clears when you view the Messenger tab\n- **Primary Support**: Monitors `facebook.com/messages` and keeps `messenger.com` compatibility during the migration\n\n## Installation\n\n### For Google Chrome\n\n1. Open Chrome and go to `chrome://extensions/`\n2. Enable **Developer mode** (toggle in the top-right corner)\n3. Click **Load unpacked**\n4. Navigate to this folder and select it\n5. The extension icon will appear in your toolbar\n\n### For Microsoft Edge\n\n1. Open Edge and go to `edge://extensions/`\n2. Enable **Developer mode** (toggle in the left sidebar)\n3. Click **Load unpacked**\n4. Navigate to this folder and select it\n5. The extension icon will appear in your toolbar\n\n## How to Use\n\n1. Keep a `facebook.com/messages` tab open (can be in background)\n2. When a new message arrives, you`ll get a desktop notification\n3. Click the notification to open Messenger\n4. Toggle Silent Mode in the popup when you need to focus\n\n## Troubleshooting\n\n### Notifications not appearing?\n\n1. **Check browser notification permissions:**\n   - Chrome: `chrome://settings/content/notifications`\n   - Edge: `edge://settings/content/notifications`\n\n2. **Check Windows notification settings:**\n   - Go to Settings \u003e System \u003e Notifications\n   - Make sure Chrome/Edge notifications are enabled\n\n3. **Make sure the Messenger tab is open**\n\n### Extension not loading?\n\nMake sure all files are present:\n- `manifest.json`\n- `background.js`\n- `content.js`\n- `popup.html`\n- `popup.css`\n- `popup.js`\n- `icons/icon16.png`\n- `icons/icon48.png`\n- `icons/icon128.png`\n\nIf icons are missing, run: `node create-icons.js`\n\n## Privacy\n\nThis extension:\n- **Primarily runs on** `facebook.com/messages/*` and keeps `messenger.com/*` compatibility during the migration\n- **Stores locally** your silent mode preference only\n- **Does NOT** send any data to external servers\n- **Does NOT** read your message contents\n\nFull Privacy Policy: [PRIVACY.md](PRIVACY.md)\n\n## Files\n\n```\nmessenger-notifications/\n├── manifest.json        # Extension configuration\n├── background.js        # Service worker (handles notifications)\n├── content.js           # Monitors Messenger pages\n├── popup.html           # Settings popup UI\n├── popup.css            # Popup styles\n├── popup.js             # Popup functionality\n├── create-icons.js      # Icon generator script\n├── README.md           # This file\n├── PRIVACY.md          # Privacy policy\n└── icons/\n    ├── icon16.png\n    ├── icon48.png\n    └── icon128.png\n```\n\n---\n\nMade for keeping connected\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevlinduldulao%2Ffb-messenger-notifications-creator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevlinduldulao%2Ffb-messenger-notifications-creator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevlinduldulao%2Ffb-messenger-notifications-creator/lists"}