{"id":25085547,"url":"https://github.com/thingylabs/chrome-new-tab-timezones","last_synced_at":"2026-04-20T04:03:01.809Z","repository":{"id":276257699,"uuid":"928723402","full_name":"thingylabs/chrome-new-tab-timezones","owner":"thingylabs","description":"🌍 Beautiful new tab Chrome extension for timezone visualization. Clean, minimal design with dark mode and interactive progress tracking.","archived":false,"fork":false,"pushed_at":"2025-04-05T12:01:51.000Z","size":422,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-07-30T03:59:49.974Z","etag":null,"topics":["chrome","extension","timezone"],"latest_commit_sha":null,"homepage":"https://chromewebstore.google.com/detail/time-zones-tab/pgejeagdoldfhmgofefpoiojfagmmhea","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/thingylabs.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}},"created_at":"2025-02-07T05:48:53.000Z","updated_at":"2025-04-05T12:01:54.000Z","dependencies_parsed_at":"2025-07-30T03:41:00.579Z","dependency_job_id":"59b8ebae-d371-4589-9c96-9f322c3bc4ef","html_url":"https://github.com/thingylabs/chrome-new-tab-timezones","commit_stats":null,"previous_names":["thingylabs/chrome-new-tab-timezones"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/thingylabs/chrome-new-tab-timezones","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thingylabs%2Fchrome-new-tab-timezones","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thingylabs%2Fchrome-new-tab-timezones/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thingylabs%2Fchrome-new-tab-timezones/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thingylabs%2Fchrome-new-tab-timezones/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thingylabs","download_url":"https://codeload.github.com/thingylabs/chrome-new-tab-timezones/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thingylabs%2Fchrome-new-tab-timezones/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32032305,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"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":["chrome","extension","timezone"],"created_at":"2025-02-07T08:20:17.136Z","updated_at":"2026-04-20T04:03:01.794Z","avatar_url":"https://github.com/thingylabs.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Time Zones Tab\n\nA beautiful Chrome extension that transforms your new tab page into a clean, minimal timezone dashboard. Built by [Thingylabs](https://github.com/thingylabs).\n\n| default | dark |\n| --- | --- |\n| ![chrome-new-tab-timezones](chrome-new-tab-timezones.png) | ![chrome-new-tab-timezones--dark](chrome-new-tab-timezones--dark.png) |\n\n## Features\n\n- 🌍 Clean visualization of multiple timezones\n- 🌓 Automatic dark mode support\n- ⭕ Interactive 12-hour progress visualization\n- 🎯 Focusable timezones with progress tracking\n- ⚡ Zero external runtime dependencies\n- 🎨 Smooth transitions and animations\n- 📱 Responsive design that works on any screen size\n\n## Installation\n\n### From Source\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/thingylabs/chrome-new-tab-timezones.git\ncd chrome-new-tab-timezones\n```\n\n2. Load in Chrome:\n   - Open Chrome and navigate to `chrome://extensions/`\n   - Enable \"Developer mode\" in the top right\n   - Click \"Load unpacked\"\n   - Select the extension directory\n\n### From Chrome Web Store\n\n↩ https://chromewebstore.google.com/detail/time-zones-tab/pgejeagdoldfhmgofefpoiojfagmmhea\n\n## Development\n\nThe extension is built with vanilla JavaScript and CSS, focusing on performance and minimal dependencies.\n\n### Project Structure\n\n```\nchrome-new-tab-timezones/\n├── manifest.json       # Extension manifest\n├── newtab.html        # New tab page template\n├── newtab.js         # Core functionality\n├── icon48.png        # Small icon\n└── icon128.png       # Large icon\n```\n\n### Customization\n\nTo modify the displayed timezones, edit the `TIMEZONES` array in `newtab.js`:\n\n```javascript\nconst TIMEZONES = [\n  { name: 'New York', timezone: 'America/New_York' },\n  { name: 'Beijing', timezone: 'Asia/Shanghai' },\n  { name: 'Bangkok', timezone: 'Asia/Bangkok' },\n  { name: 'Berlin', timezone: 'Europe/Berlin' }\n]\n```\n\nUse standard [IANA timezone names](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) for the `timezone` field.\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\nMIT © [Thingylabs](https://github.com/thingylabs)\n\n## Security\n\nFor security concerns, please open an issue or contact us directly.\n\n## Credits\n\nBuilt with ❤️ by [Thingylabs](https://github.com/thingylabs)\n\n---\n\n\u003cdiv align=\"center\"\u003e\n  \u003csub\u003eBuilt with ⚡ by Thingylabs\u003c/sub\u003e\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthingylabs%2Fchrome-new-tab-timezones","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthingylabs%2Fchrome-new-tab-timezones","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthingylabs%2Fchrome-new-tab-timezones/lists"}