{"id":47808794,"url":"https://github.com/byigitt/nogify","last_synced_at":"2026-04-03T18:01:03.144Z","repository":{"id":341433227,"uuid":"1161820737","full_name":"byigitt/nogify","owner":"byigitt","description":"🔔 Chrome extension that monitors your GitHub public repos and notifies you of new Issues \u0026 Pull Requests","archived":false,"fork":false,"pushed_at":"2026-02-19T15:32:58.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-01T19:47:39.291Z","etag":null,"topics":["browser-extension","chrome-extension","github","github-api","javascript","notifications"],"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/byigitt.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-19T14:58:11.000Z","updated_at":"2026-02-19T15:39:42.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/byigitt/nogify","commit_stats":null,"previous_names":["byigitt/nogify"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/byigitt/nogify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/byigitt%2Fnogify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/byigitt%2Fnogify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/byigitt%2Fnogify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/byigitt%2Fnogify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/byigitt","download_url":"https://codeload.github.com/byigitt/nogify/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/byigitt%2Fnogify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31368156,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-03T17:53:18.093Z","status":"ssl_error","status_checked_at":"2026-04-03T17:53:17.617Z","response_time":107,"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":["browser-extension","chrome-extension","github","github-api","javascript","notifications"],"created_at":"2026-04-03T18:00:25.752Z","updated_at":"2026-04-03T18:01:03.135Z","avatar_url":"https://github.com/byigitt.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nogify – GitHub Repo Watcher\n\nA Chrome extension that monitors your GitHub public repositories and notifies you when new **Issues** or **Pull Requests** are opened.\n\n## Features\n\n- Monitors all your public GitHub repos automatically\n- Desktop notifications for new Issues \u0026 PRs\n- Badge counter showing unseen events\n- Configurable check interval (1-60 minutes)\n- Token stored locally, never sent anywhere except GitHub API\n- Dark theme UI\n\n## Installation\n\n1. Clone or download this repo\n2. Open Chrome and go to `chrome://extensions/`\n3. Enable **Developer mode** (top-right toggle)\n4. Click **\"Load unpacked\"** and select the `nogify` folder\n5. Click the Nogify icon in the toolbar, then open Settings\n6. Enter your **GitHub username**\n7. (Recommended) Add a **Personal Access Token** for higher rate limits\n\n## Getting a GitHub Token\n\n1. Go to [github.com/settings/tokens?type=beta](https://github.com/settings/tokens?type=beta)\n2. Click **\"Generate new token\"**\n3. Name it `Nogify Extension`\n4. Under **Repository access**, select **\"Public Repositories (read-only)\"**\n5. Click **\"Generate token\"** and copy it\n6. Paste it in the extension settings\n\n\u003e **No extra scopes needed.** Public repo read access is sufficient.\n\n### Rate Limits\n\n| Auth Method | Limit |\n|---|---|\n| No token | 60 requests/hour |\n| With token | 5,000 requests/hour |\n\nEach check uses 1-2 requests via the Search API, regardless of repo count.\n\n## How It Works\n\n1. Background service worker runs on a timer (default: every 3 minutes)\n2. Uses the GitHub Search API to find all open issues/PRs across your public repos in a single query\n3. Compares against previously seen IDs\n4. Sends Chrome notifications for new items\n5. First run only populates the \"seen\" list (no spam on install)\n\n## Project Structure\n\n```\nnogify/\n├── manifest.json          # Extension manifest (MV3)\n├── background.js          # Service worker - polling \u0026 notifications\n├── shared.css             # Shared CSS variables and reset\n├── popup/\n│   ├── popup.html         # Popup UI\n│   ├── popup.css          # Popup styles\n│   └── popup.js           # Popup logic\n├── options/\n│   ├── options.html       # Settings page\n│   ├── options.css        # Settings styles\n│   └── options.js         # Settings logic\n├── icons/\n│   ├── icons.js           # Inline SVG icon definitions\n│   ├── icon16.png\n│   ├── icon48.png\n│   └── icon128.png\n└── cli-test.mjs           # CLI test tool for logic verification\n```\n\n## CLI Test Tool\n\nTest the core logic without loading the Chrome extension:\n\n```bash\nnode cli-test.mjs \u003cusername\u003e [token] [--watch] [--interval N] [--skip-profile]\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbyigitt%2Fnogify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbyigitt%2Fnogify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbyigitt%2Fnogify/lists"}