Time Stamper

Quick and easy adding of a timestamp to an input field

Apa itu Time Stamper?

Time Stamper adalah ekstensi Chrome yang dikembangkan oleh Christopher, dan fitur utamanya adalah "Quick and easy adding of a timestamp to an input field".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Time Stamper

Unduh file ekstensi Time Stamper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        A simple extension to add a time stamp to an editable field from the context menu.

After clicking into a text input area, right click to bring up the context menu; then click the "Insert Timestamp" entry. This will add the current timestamp as set on the options page.

If you appreciate the extension and would like to get me a coffee, you can do so here: https://www.buymeacoffee.com/timestamper
..or send me a Dogecoin or two: DF4RbvhMvm9xwCKsfv3zpW7QHazXCMgzoS

Updates:
Updated to Manifest Version 3

Added 2 time offset, changed the logo font, and other tweaks. Re-corrected inserting of timestamp into a "contenteditable" field

Added the notifications permission so to make updates less intrusive. Along with having the quick pick be the actual character format and added some improvements to the options page previews.                    

Informasi Dasar Ekstensi

Nama Time Stamper Time Stamper
ID hipeknijlebohncdfhcldmmooapmmmfc
URL Resmi https://chromewebstore.google.com/detail/time-stamper/hipeknijlebohncdfhcldmmooapmmmfc
Deskripsi Quick and easy adding of a timestamp to an input field
Ukuran File 125 KB
Jumlah Instalasi 4,939
Versi Saat Ini 2.0.0
Terakhir Diperbarui 2022-11-02
Tanggal Publikasi 2018-01-05
Penilaian 3.80/5 Total 15 Penilaian
Pengembang Christopher
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Time Stamper",
    "short_name": "Time Stamper",
    "version": "2.0.0",
    "manifest_version": 3,
    "description": "Quick and easy adding of a timestamp to an input field",
    "icons": {
        "16": "images\/ts-icon_16.png",
        "19": "images\/ts-icon_19.png",
        "128": "images\/ts-icon_128_v2.png"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "notifications"
    ],
    "background": {
        "service_worker": "ts_context_menu.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "action": {
        "default_icon": {
            "19": "images\/ts-icon_19.png"
        },
        "default_title": "Time Stamper Options"
    },
    "commands": {
        "insert-timestamp": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            },
            "description": "Insert timestamp"
        }
    }
}