Epoch/Unix Timestamp Converter
This extension provides a quick way to see Epoch/Unix timestamps in a readable format.
What is Epoch/Unix Timestamp Converter?
Epoch/Unix Timestamp Converter is a Chrome extension developed by Joel Henke, and its main feature is "This extension provides a quick way to see Epoch/Unix timestamps in a readable format.".
Extension Screenshots
Download Epoch/Unix Timestamp Converter Extension CRX File
Download Epoch/Unix Timestamp Converter 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
A tooltip will appear when you highlight an epoch timestamp to display a readable format.
Extension Basic Information
Name | Epoch/Unix Timestamp Converter |
ID | ccmimkellmbnnemahggeenpdefmldbfk |
Official URL | https://chromewebstore.google.com/detail/epochunix-timestamp-conve/ccmimkellmbnnemahggeenpdefmldbfk |
Description | This extension provides a quick way to see Epoch/Unix timestamps in a readable format. |
File Size | 10.02 KB |
Installation Count | 132 |
Current Version | 1.0 |
Last Updated | 2020-02-19 |
Publish Date | 2020-02-19 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Joel Henke |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Epoch\/Unix Timestamp Converter", "version": "1.0", "description": "This extension provides a quick way to see Epoch\/Unix timestamps in a readable format.", "author": "Joel Henke", "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "icons": { "48": "icon48.png", "128": "icon128.png" } } |