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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily add a UNIX timestamp of the current time and date to most form fields!"입니다.
확장 프로그램 스크린샷
Timestamp it! V2 light 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 thekeys 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...
확장 프로그램 기본 정보
이름 | |
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" ] } ] } |