Timestamp Converter

This is the most minimal extension converts timestamp to human-readable date format.

O que é Timestamp Converter?

Timestamp Converter é uma extensão do Chrome desenvolvida por https://www.sahildua.com, e sua principal característica é "This is the most minimal extension converts timestamp to human-readable date format.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Timestamp Converter

Baixe arquivos de extensão Timestamp Converter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Ever worked with UNIX timestamps? Ever struggled in reading or converting UNIX timestamps into readable data-time formats?
This extension comes to the rescue! Just enter any timestamp and the human-readable format is just a click away! No need to visit other websites specially for converting timestamps into date/time format. Now it's just a click away and that too in your own browser working window/tab only.                    

Informações Básicas da Extensão

Nome Timestamp Converter Timestamp Converter
ID ndbibeklaoahhlfhdlkddlbnicnhmcad
URL Oficial https://chromewebstore.google.com/detail/timestamp-converter/ndbibeklaoahhlfhdlkddlbnicnhmcad
Descrição This is the most minimal extension converts timestamp to human-readable date format.
Tamanho do Arquivo 65.02 KB
Contagem de Instalações 177
Versão Atual 1.0.3
Última Atualização 2015-12-25
Data de Publicação 2015-12-25
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://www.sahildua.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://sahildua.com
URL da Página de Ajuda https://github.com/sahildua2305/chrome-time-conversion
Idiomas Suportados en
manifest.json
{
    "manifest_version": 2,
    "name": "Timestamp Converter",
    "description": "This is the most minimal extension converts timestamp to human-readable date format.",
    "version": "1.0.3",
    "browser_action": {
        "default_icon": "assets\/icon-16.png",
        "default_popup": "main.html",
        "default_title": "Convert a timestamp"
    },
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/wwww.google.com\/*"
            ],
            "js": [
                "assets\/script.js"
            ]
        }
    ]
}