{"id":19162345,"url":"https://github.com/agilie/web-time-tracker","last_synced_at":"2026-02-28T22:31:45.336Z","repository":{"id":71906228,"uuid":"91314243","full_name":"agilie/Web-Time-Tracker","owner":"agilie","description":"Plugin named Timetracker is a time counter that works in both increase and decrease directions.","archived":false,"fork":false,"pushed_at":"2017-06-19T12:59:22.000Z","size":3153,"stargazers_count":20,"open_issues_count":0,"forks_count":2,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-05-07T10:49:48.542Z","etag":null,"topics":["countdown","jquery-plugin","timer","timetracker"],"latest_commit_sha":null,"homepage":"https://agilie.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/agilie.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2017-05-15T08:36:52.000Z","updated_at":"2024-11-18T12:55:02.000Z","dependencies_parsed_at":"2023-09-15T21:16:33.932Z","dependency_job_id":null,"html_url":"https://github.com/agilie/Web-Time-Tracker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/agilie/Web-Time-Tracker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agilie%2FWeb-Time-Tracker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agilie%2FWeb-Time-Tracker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agilie%2FWeb-Time-Tracker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agilie%2FWeb-Time-Tracker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/agilie","download_url":"https://codeload.github.com/agilie/Web-Time-Tracker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agilie%2FWeb-Time-Tracker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29953284,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T18:42:55.706Z","status":"ssl_error","status_checked_at":"2026-02-28T18:42:48.811Z","response_time":90,"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":["countdown","jquery-plugin","timer","timetracker"],"created_at":"2024-11-09T09:10:22.210Z","updated_at":"2026-02-28T22:31:45.306Z","avatar_url":"https://github.com/agilie.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![License](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/agilie/Web-Time-Tracker)\n\n# Web Time Tracker\nPlugin named **Timetracker** is a time counter that works in both increase and decrease directions. It can be embedded in websites and used as a timer, tracker, counting down tool and in any other situation where you need to control elapsed time (for example, during online testing).\n**Timetracker** plugin can be adapted to any web resource and designed in accordance with the website style.\nFor initialization, use the command:\n```sh\n$('.timetracker').timetracker();\n```\n\n# Timetracker format\nThe default interval is 1 second, the display format is in minutes and seconds. \nTo customize time format use \"format\" field during initialization:\n```sh\n$('.timetracker').timetracker({'format': 'i:s'});\n```\n\n# How to use plugin\nTo specify when you want to stop the countdown, use the setting timestop (in seconds):\n```sh\n$('.timetracker').timetracker({'timestop': 15})\n```\nThe parameter \"countdown\" allows you to specify the counting direction, and the parameter \"timestop\", in seconds, specifies the moment when the count should be stopped or resumed.\n```sh\n$('.timetracker').timetracker({'countdown': true, 'timestop': 60});\n```\nTo guide the tracker, there are a number of events that allow you to start or stop counting and return to the original state.\n```sh\n$('.timetracker').timetracker('start');\n$('.timetracker').timetracker('stop');\n$('.timetracker').timetracker('reset');\n```\n\nYou can assign your handler to process the timer stop event:\n```sh\n$('.timetracker').timetracker({\n   'timestop': 5,\n   'format': 'i:s',\n   'stop': function() {\n       alert('The timer stopped');\n   }\n});\n```\n\n# Example of tracker usage\nHere we can show you an example of tracker usage: \n```sh\n\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"en\"\u003e\n\u003chead\u003e\n   \u003cmeta charset=\"UTF-8\"\u003e\n   \u003ctitle\u003eTitle\u003c/title\u003e\n   \u003cscript src=\"https://code.jquery.com/jquery-2.2.0.min.js\"\u003e\u003c/script\u003e\n   \u003cscript src=\"../app/js/time-tracker.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n   \u003cspan class='timetracker'\u003e\u003c/span\u003e\n   \u003cbutton onClick=\"javascript:$('.timetracker').timetracker('start');\"\u003estart\u003c/button\u003e\n   \u003cbutton onClick=\"javascript:$('.timetracker').timetracker('stop');\"\u003estop\u003c/button\u003e\n   \u003cbutton onClick=\"javascript:$('.timetracker').timetracker('reset');\"\u003ereset\u003c/button\u003e\n   \u003cscript\u003e\n       $('.timetracker').timetracker({'timestop': 15, 'format': 'i:s', 'countdown': true});\n   \u003c/script\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n```\n\n## Troubleshooting\nProblems? Check the [Issues](https://github.com/agilie/Web-Time-Tracker/issues) block \nto find the solution or create an new issue that we will fix asap. Feel free to contribute.\n\n## Author\nThis jQuery plugin is open-sourced by [Agilie Team](https://www.agilie.com) ([info@agilie.com](mailto:info@agilie.com))\n\n## Contributor\n[Petr Simanko](https://github.com/PetrSimanko)\n\n## Contact us\nIf you have any questions, suggestions or just need a help with web or mobile development, please email us at \u003cweb@agilie.com\u003e. You can ask us anything from basic to complex questions. \n\nWe will continue publishing new open-source projects. Stay with us, more updates will follow!\n\n## License\nThe [MIT](https://github.com/agilie/Web-Time-Tracker/blob/master/LICENSE.md) License (MIT) Copyright © 2017 [Agilie Team](https://www.agilie.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagilie%2Fweb-time-tracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fagilie%2Fweb-time-tracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagilie%2Fweb-time-tracker/lists"}