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ファイルをダウンロード
Timestamp it! V2 light拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" ] } ] } |