Timestamp it! V2 light

Easily add a UNIX timestamp of the current time and date to most form fields!

Timestamp it! V2 lightคืออะไร?

Timestamp it! V2 light เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Douzeprod และคุณลักษณะหลักของมันคือ "Easily add a UNIX timestamp of the current time and date to most form fields!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Timestamp it! V2 light

ดาวน์โหลดไฟล์ส่วนขยาย Timestamp it! V2 light ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension is based on and inspired by the "Timestamp it!" extension version 1.6 from SHELLSTRÖM.

This is the light version that only allows you to insert a UNIX timestamp to most of the editable forms.

To do that you can right-click any editable fields and select "Insert UNIX timestamp" from the menu. You can also inject the timestamp using the  keys combination.

I was using the original "Timestamp it!" for a while and needed to add more options to it. As it looks like it's not under development anymore I decided to finally make the necessary changes to the code myself. At this point I'm only publishing one part of the changes to make it available for others.

I'm using this extension everyday at work to generate unique identifiers for my technical notes (like KB1510661476), my meeting notes (like MN1510661490), my SQL variables (like VAR1510661508), online forms testing (like user1510661747) and so on...                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Timestamp it! V2 light Timestamp it! V2 light
ID ocgigikbajfppcmcfnklmbfkgipabcio
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/timestamp-it-v2-light/ocgigikbajfppcmcfnklmbfkgipabcio
คำอธิบาย Easily add a UNIX timestamp of the current time and date to most form fields!
ขนาดไฟล์ 10.89 KB
จำนวนการติดตั้ง 69
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2017-11-16
วันที่เผยแพร่ 2017-11-16
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Douzeprod
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Timestamp it! V2 light",
    "version": "1.0",
    "manifest_version": 2,
    "minimum_chrome_version": "20",
    "description": "Easily add a UNIX timestamp of the current time and date to most form fields!",
    "icons": {
        "16": "resources\/icon_16.png",
        "48": "resources\/icon_48.png",
        "128": "resources\/icon_128.png"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background_script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "timestamp.js"
            ]
        }
    ]
}