Epoch Converter

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

ما هو Epoch Converter؟

Epoch Converter هو إضافة Chrome تم تطويرها بواسطة drautb، والميزة الرئيسية لها هي "Provides a popup showing a human readable date of a highlighted Unix timestamp.".

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

screenshot
screenshot

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

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

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

                        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                    

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

الاسم Epoch Converter Epoch Converter
ID plfbhieilacgkdnphcdehdnhjenmnima
عنوان URL الرسمي https://chromewebstore.google.com/detail/epoch-converter/plfbhieilacgkdnphcdehdnhjenmnima
الوصف Provides a popup showing a human readable date of a highlighted Unix timestamp.
حجم الملف 50.43 KB
عدد التثبيتات 1,753
النسخة الحالية 1.1.2
آخر تحديث 2023-05-19
تاريخ النشر 2013-07-17
تقييم 3.33/5 مجموع تقييمات 21
المطور drautb
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://github.com/drautb/epoch-converter/issues
اللغات المدعومة 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
        }
    ]
}