Timestamp Converter

This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.

ما هو Timestamp Converter؟

Timestamp Converter هو إضافة Chrome تم تطويرها بواسطة prajwalrao، والميزة الرئيسية لها هي "This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Timestamp Converter

قم بتنزيل ملفات الامتداد Timestamp Converter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Timestamp Converter Timestamp Converter
ID gkgflbiifhpciaafdhpafnejkpiffakp
عنوان URL الرسمي https://chromewebstore.google.com/detail/timestamp-converter/gkgflbiifhpciaafdhpafnejkpiffakp
الوصف This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.
حجم الملف 80.05 KB
عدد التثبيتات 162
النسخة الحالية 1.2
آخر تحديث 2016-04-20
تاريخ النشر 2016-04-19
تقييم 4.00/5 مجموع تقييمات 2
المطور prajwalrao
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/prajwalrao/ts-converter
عنوان صفحة المساعدة https://github.com/prajwalrao/ts-converter/issues
اللغات المدعومة 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
        }
    ]
}