{"id":21342498,"url":"https://github.com/dmunasingha/task-timer-extension","last_synced_at":"2026-04-07T08:02:10.605Z","repository":{"id":262993011,"uuid":"886703806","full_name":"dmunasingha/task-timer-extension","owner":"dmunasingha","description":" A modern, beautiful browser extension for tracking time spent on tasks with pause/resume functionality. Built with React, TypeScript, and Tailwind CSS.","archived":false,"fork":false,"pushed_at":"2024-11-15T13:25:31.000Z","size":50,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-10T11:15:10.474Z","etag":null,"topics":["chrome","extension","react","vite","web"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/dmunasingha.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}},"created_at":"2024-11-11T13:05:00.000Z","updated_at":"2024-11-15T13:22:37.000Z","dependencies_parsed_at":"2024-11-15T13:38:13.000Z","dependency_job_id":"3be55163-fa4c-4447-993e-ec7c617814d3","html_url":"https://github.com/dmunasingha/task-timer-extension","commit_stats":null,"previous_names":["dmunasingha/task-timer-extension"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/dmunasingha/task-timer-extension","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmunasingha%2Ftask-timer-extension","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmunasingha%2Ftask-timer-extension/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmunasingha%2Ftask-timer-extension/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmunasingha%2Ftask-timer-extension/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dmunasingha","download_url":"https://codeload.github.com/dmunasingha/task-timer-extension/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmunasingha%2Ftask-timer-extension/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31504897,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T03:10:19.677Z","status":"ssl_error","status_checked_at":"2026-04-07T03:10:13.982Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["chrome","extension","react","vite","web"],"created_at":"2024-11-22T01:08:52.493Z","updated_at":"2026-04-07T08:02:10.582Z","avatar_url":"https://github.com/dmunasingha.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TaskTimer Browser Extension\n\nA modern, beautiful browser extension for tracking time spent on tasks with pause/resume functionality. Built with React, TypeScript, and Tailwind CSS.\n\n\n## Features\n\n- ⏱️ Simple and intuitive task time tracking\n- ⏸️ Pause and resume timer functionality\n- 📊 Task history with detailed time logs\n- 🎯 Background tracking even when popup is closed\n- 💾 Persistent storage across browser sessions\n- 🎨 Modern, responsive UI with Tailwind CSS\n- 🌙 Clean, minimalist design\n\n## Installation\n\n### Development\n\n1. Clone this repository\n2. Install dependencies:\n```bash\nnpm install\n```\n3. Start the development server:\n```bash\nnpm run dev\n```\n\n### Loading the Extension\n\n#### Chrome/Edge\n1. Build the extension:\n```bash\nnpm run build:extension\n```\n2. Open Chrome/Edge and navigate to `chrome://extensions`\n3. Enable \"Developer mode\"\n4. Click \"Load unpacked\" and select the `dist` folder\n\n#### Firefox\n1. Build the extension:\n```bash\nnpm run build:extension\n```\n2. Open Firefox and navigate to `about:debugging`\n3. Click \"This Firefox\"\n4. Click \"Load Temporary Add-on\" and select any file from the `dist` folder\n\n## Usage\n\n1. Click the extension icon in your browser toolbar\n2. Enter a task name and click \"Start Timer\"\n3. Use the pause/resume button to temporarily stop/continue timing\n4. Click \"Stop Timer\" when done to save the task\n5. View your task history in the \"History\" tab\n\n## Development\n\n### Project Structure\n\n```\n├── src/\n│   ├── components/        # React components\n│   ├── utils/            # Utility functions\n│   ├── types.ts          # TypeScript types\n│   └── App.tsx           # Main application\n├── public/\n│   └── icons/            # Extension icons\n└── background.js         # Service worker\n```\n\n### Available Scripts\n\n- `npm run dev` - Start development server\n- `npm run build` - Build the extension\n- `npm run build:extension` - Build extension with icon conversion\n- `npm run lint` - Run ESLint\n\n## Technical Details\n\n- Built with React 18 and TypeScript\n- Uses Chrome Extension Storage API for persistence\n- Background service worker for timer management\n- Tailwind CSS for styling\n- Lucide React for icons\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- [React](https://reactjs.org/)\n- [TypeScript](https://www.typescriptlang.org/)\n- [Tailwind CSS](https://tailwindcss.com/)\n- [Lucide Icons](https://lucide.dev/)\n- [Vite](https://vitejs.dev/)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdmunasingha%2Ftask-timer-extension","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdmunasingha%2Ftask-timer-extension","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdmunasingha%2Ftask-timer-extension/lists"}