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 Douzeprod द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily add a UNIX timestamp of the current time and date to most form fields!"।

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

screenshot
screenshot

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

crx प्रारूप में Timestamp it! V2 light एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

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

                        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"
            ]
        }
    ]
}