Timely
This extension converts unix epoch timestamps to human-readable times.
What is Timely?
Timely is a Chrome extension developed by Chris Warren, and its main feature is "This extension converts unix epoch timestamps to human-readable times.".
Extension Screenshots
Download Timely Extension CRX File
Download Timely extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Find a page containing UNIX timestamps, e.g. http://en.wikipedia.org/wiki/Unix_time or the fantastic JSONView extension. Simply click the clock in the toolbar and all timestamps (in seconds or milliseconds from epoch) will be converted to human-readable dates and times.
Extension Basic Information
Name | Timely |
ID | phpkahchjodmhmckibejeafoflafljma |
Official URL | https://chromewebstore.google.com/detail/timely/phpkahchjodmhmckibejeafoflafljma |
Description | This extension converts unix epoch timestamps to human-readable times. |
File Size | 10.88 KB |
Installation Count | 2,108 |
Current Version | 1.0.1 |
Last Updated | 2013-10-27 |
Publish Date | 2013-10-27 |
Rating | 4.67/5 Total 9 Ratings |
Developer | Chris Warren |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Timely", "short_name": "Timely", "description": "This extension converts unix epoch timestamps to human-readable times.", "icons": { "128": "icon128.png" }, "version": "1.0.1", "permissions": [ "activeTab" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "icon.png", "default_title": "Show human-readable timestamps" } } |