Timestamp Converter
This is the most minimal extension converts timestamp to human-readable date format.
ما هو Timestamp Converter؟
Timestamp Converter هو إضافة Chrome تم تطويرها بواسطة https://www.sahildua.com، والميزة الرئيسية لها هي "This is the most minimal extension converts timestamp to human-readable date format.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Timestamp Converter
قم بتنزيل ملفات الامتداد Timestamp Converter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Ever worked with UNIX timestamps? Ever struggled in reading or converting UNIX timestamps into readable data-time formats?
This extension comes to the rescue! Just enter any timestamp and the human-readable format is just a click away! No need to visit other websites specially for converting timestamps into date/time format. Now it's just a click away and that too in your own browser working window/tab only. معلومات أساسية عن التمديد
| الاسم | |
| ID | ndbibeklaoahhlfhdlkddlbnicnhmcad |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/timestamp-converter/ndbibeklaoahhlfhdlkddlbnicnhmcad |
| الوصف | This is the most minimal extension converts timestamp to human-readable date format. |
| حجم الملف | 65.02 KB |
| عدد التثبيتات | 177 |
| النسخة الحالية | 1.0.3 |
| آخر تحديث | 2015-12-25 |
| تاريخ النشر | 2015-12-25 |
| تقييم | 5.00/5 مجموع تقييمات 2 |
| المطور | https://www.sahildua.com |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | http://sahildua.com |
| عنوان صفحة المساعدة | https://github.com/sahildua2305/chrome-time-conversion |
| اللغات المدعومة | en |
| manifest.json | |
{
"manifest_version": 2,
"name": "Timestamp Converter",
"description": "This is the most minimal extension converts timestamp to human-readable date format.",
"version": "1.0.3",
"browser_action": {
"default_icon": "assets\/icon-16.png",
"default_popup": "main.html",
"default_title": "Convert a timestamp"
},
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"content_scripts": [
{
"matches": [
"http:\/\/wwww.google.com\/*"
],
"js": [
"assets\/script.js"
]
}
]
} | |