Epoch Converter Tooltip for Google Chrome™

Convert timestamps to readable times

Vad är Epoch Converter Tooltip for Google Chrome™?

Epoch Converter Tooltip for Google Chrome™ är en Chrome-tillägg utvecklad av eyal0, och dess huvudfunktion är "Convert timestamps to readable times".

Tilläggsskärmbilder

screenshot

Ladda ner Epoch Converter Tooltip for Google Chrome™-förlängningens CRX-fil

Ladda ner Epoch Converter Tooltip for Google Chrome™-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        When hovering over a number that might be a timestamp, convert it to a timestamp.

In the options, the location of the tooltip, the triggering, and the timezone can be changed.                    

Grundläggande Information om Tillägg

Namn Epoch Converter Tooltip for Google Chrome™ Epoch Converter Tooltip for Google Chrome™
ID gfhloejbjfojlcadcpahgdaagekamhjh
Officiell webbadress https://chromewebstore.google.com/detail/epoch-converter-tooltip-f/gfhloejbjfojlcadcpahgdaagekamhjh
Beskrivning Convert timestamps to readable times
Filstorlek 639 KB
Antal Installationer 291
Aktuell Version 1.5.1
Senast Uppdaterad 2017-06-29
Publiceringsdatum 2017-06-29
Betyg 4.00/5 Totalt 4 Betyg
Utvecklare eyal0
Betalningssätt free
Tilläggswebbplats https://github.com/eyal0/epoch-converter-tooltip
Hjälpsida URL https://github.com/eyal0/epoch-converter-tooltip/issues
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Epoch Converter Tooltip for Google Chrome\u2122",
    "version": "1.5.1",
    "manifest_version": 2,
    "description": "Convert timestamps to readable times",
    "icons": {
        "16": "ECT-16.png",
        "48": "ECT-48.png",
        "128": "ECT-128.png"
    },
    "background": {
        "scripts": [
            "ECT-background.js"
        ],
        "persistent": true
    },
    "options_page": "ECT-options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "ECT.css"
            ],
            "js": [
                "ECT-contentscript.js"
            ]
        }
    ]
}