Time Stamper

Quick and easy adding of a timestamp to an input field

Time Stamper란 무엇입니까?

Time Stamper은(는) Christopher에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quick and easy adding of a timestamp to an input field"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Time Stamper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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