Unix timestamp to readable date/time

Convert Unix timestamps on Web-page to readable date/time

Unix timestamp to readable date/time क्या है?

Unix timestamp to readable date/time Alexey Michurin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Convert Unix timestamps on Web-page to readable date/time"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Unix timestamp to readable date/time एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        If you are sometimes forced to read UNIX timestamps in Web UI, you must know how it painful.

This small extension provides two ways to make your life easier.

• Push the extension button and all timestamps will be equipped with popups with readable time. Please visit the extension options page (right click on buttom). Here you can tune many options: colors, support of milli-, micro- and nanosecond, and other.

• If you push extension button on newtab page, you'll get a simple converter page.

Be careful with interactive pages. If page changes itself, like many of modern pages do, all readable timestamps will dissapear. This extension doesn't monitor pages permanently. It acts on demand only.                    

एक्सटेंशन की मूल जानकारी

नाम Unix timestamp to readable date/time Unix timestamp to readable date/time
ID cngfpffdiefnoblplbcdejppdpceaehm
आधिकारिक URL https://chromewebstore.google.com/detail/unix-timestamp-to-readabl/cngfpffdiefnoblplbcdejppdpceaehm
विवरण Convert Unix timestamps on Web-page to readable date/time
फ़ाइल का आकार 33.57 KB
स्थापना संख्या 694
वर्तमान संस्करण 0.0.2.2
अंतिम अपडेट 2020-01-05
प्रकाशन तिथि 2020-01-05
रेटिंग 5.00/5 कुल 5 रेटिंग्स
डेवलपर Alexey Michurin
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/michurin/chrome-extension-timestamp-to-readable
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unix timestamp to readable date\/time",
    "version": "0.0.2.2",
    "minimum_chrome_version": "49",
    "description": "Convert Unix timestamps on Web-page to readable date\/time",
    "short_name": "timestamp\u2192datetime",
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "offline_enabled": true,
    "options_page": "options.html",
    "background": {
        "persistent": false,
        "scripts": [
            "common.js",
            "bg.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "icon-128.png",
            "38": "icon-128.png"
        },
        "default_title": "timestamp \u21d2 datetime"
    },
    "homepage_url": "https:\/\/github.com\/michurin\/chrome-extension-timestamp-to-readable",
    "author": "Alexey Michurin ",
    "manifest_version": 2
}