Timestamp Converter
This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.
Wat is Timestamp Converter?
Timestamp Converter is een Chrome-extensie ontwikkeld door prajwalrao, en de belangrijkste functie is "This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.".
Extensie Screenshots
Download het CRX-bestand van de extensie Timestamp Converter
Download Timestamp Converter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension will help you convert Epoch Timestamp into Human Readable Time on highlight. Just select any epoch timestamp and it should show you the human readable time in the tooltip.
Basisinformatie over de Extensie
Naam | Timestamp Converter |
ID | gkgflbiifhpciaafdhpafnejkpiffakp |
Officiële URL | https://chromewebstore.google.com/detail/timestamp-converter/gkgflbiifhpciaafdhpafnejkpiffakp |
Beschrijving | This extension will help you convert Epoch Timestamp into Human Readable Time on highlight. |
Bestandsgrootte | 80.05 KB |
Aantal Installaties | 162 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2016-04-20 |
Publicatiedatum | 2016-04-19 |
Beoordeling | 4.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | prajwalrao |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/prajwalrao/ts-converter |
Help Pagina-URL | https://github.com/prajwalrao/ts-converter/issues |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Prajwal Rao", "name": "Timestamp Converter", "description": "This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.", "version": "1.2", "icons": { "128": "icons\/icon_128x128.png", "16": "icons\/icon_16x16.png", "32": "icons\/icon_32x32.png", "48": "icons\/icon_48x48.png", "512": "icons\/icon_512x512.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "ts-conv.css" ], "js": [ "ts-conv.js" ], "run_at": "document_end", "all_frames": true } ] } |