Timestamp Converter
This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.
Qu'est-ce que Timestamp Converter ?
Timestamp Converter est une extension Chrome développée par prajwalrao, et sa fonction principale est "This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Timestamp Converter
Téléchargez les fichiers d'extension Timestamp Converter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Timestamp Converter |
ID | gkgflbiifhpciaafdhpafnejkpiffakp |
URL Officiel | https://chromewebstore.google.com/detail/timestamp-converter/gkgflbiifhpciaafdhpafnejkpiffakp |
Description | This extension will help you convert Epoch Timestamp into Human Readable Time on highlight. |
Taille du Fichier | 80.05 KB |
Nombre d'Installations | 162 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2016-04-20 |
Date de Publication | 2016-04-19 |
Évaluation | 4.00/5 Total 2 Évaluations |
Développeur | prajwalrao |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/prajwalrao/ts-converter |
URL de la Page d'Aide | https://github.com/prajwalrao/ts-converter/issues |
Langues Prises en Charge | 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 } ] } |