Time Stamper

Quick and easy adding of a timestamp to an input field

Τι είναι το Time Stamper;

Το Time Stamper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Christopher, και η κύρια λειτουργία του είναι "Quick and easy adding of a timestamp to an input field".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Time Stamper

Λήψη αρχείων επέκτασης Time Stamper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Time Stamper Time Stamper
ID hipeknijlebohncdfhcldmmooapmmmfc
Επίσημο URL https://chromewebstore.google.com/detail/time-stamper/hipeknijlebohncdfhcldmmooapmmmfc
Περιγραφή Quick and easy adding of a timestamp to an input field
Μέγεθος Αρχείου 125 KB
Αριθμός Εγκαταστάσεων 4,939
Τρέχουσα Έκδοση 2.0.0
Τελευταία Ενημέρωση 2022-11-02
Ημερομηνία Δημοσίευσης 2018-01-05
Αξιολόγηση 3.80/5 Συνολικά 15 Αξιολογήσεις
Προγραμματιστής Christopher
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
        }
    }
}