Epoch Converter

Provides a popup showing a human readable date of a highlighted Unix timestamp.

O que é Epoch Converter?

Epoch Converter é uma extensão do Chrome desenvolvida por drautb, e sua principal característica é "Provides a popup showing a human readable date of a highlighted Unix timestamp.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Epoch Converter

Baixe arquivos de extensão Epoch 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

                        This extension converts Unix timestamps to human readable date and time strings. Simply double click or highlight a timestamp in your browser window, and a small popup will appear containing a readable date and time. 

This extension is open source. Check it out on GitHub: http://github.com/drautb/epoch-converter                    

Informações Básicas da Extensão

Nome Epoch Converter Epoch Converter
ID plfbhieilacgkdnphcdehdnhjenmnima
URL Oficial https://chromewebstore.google.com/detail/epoch-converter/plfbhieilacgkdnphcdehdnhjenmnima
Descrição Provides a popup showing a human readable date of a highlighted Unix timestamp.
Tamanho do Arquivo 50.43 KB
Contagem de Instalações 1,753
Versão Atual 1.1.2
Última Atualização 2023-05-19
Data de Publicação 2013-07-17
Classificação 3.33/5 Total de 21 Avaliações
Desenvolvedor drautb
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/drautb/epoch-converter/issues
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Epoch Converter",
    "description": "Provides a popup showing a human readable date of a highlighted Unix timestamp.",
    "version": "1.1.2",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "bubble.css"
            ],
            "js": [
                "jquery.min.js",
                "selection.js"
            ],
            "all_frames": true
        }
    ]
}