Bitbucket (+ others): absolute commit date
Converts dates from relative format to absolute (format presets) for Bitbucket.org, may for *.atlassian.com(jira) ...
Bitbucket (+ others): absolute commit date là gì?
Bitbucket (+ others): absolute commit date là một tiện ích mở rộng Chrome được phát triển bởi bfday, và tính năng chính của nó là "Converts dates from relative format to absolute (format presets) for Bitbucket.org, may for *.atlassian.com(jira) ...".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Bitbucket (+ others): absolute commit date
Tải xuống các tệp mở rộng Bitbucket (+ others): absolute commit date dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Shows actual (absolute) date of commits (and other date-containing fields) for Bitbucket.org, *.atlassian.com and others domains which have
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Bitbucket (+ others): absolute commit date |
ID | ibmpjnmlhfboaljbechlinicnlpmlgnp |
URL Chính Thức | https://chromewebstore.google.com/detail/bitbucket-+-others-absolu/ibmpjnmlhfboaljbechlinicnlpmlgnp |
Mô tả | Converts dates from relative format to absolute (format presets) for Bitbucket.org, may for *.atlassian.com(jira) ... |
Kích Thước Tệp | 12.6 KB |
Số Lần Cài Đặt | 737 |
Phiên Bản Hiện Tại | 2.2.0 |
Cập Nhật Lần Cuối | 2019-03-13 |
Ngày Phát Hành | 2019-03-13 |
Đánh Giá | 4.17/5 Tổng số 12 Đánh Giá |
Nhà Phát Triển | bfday |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/bfday |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Bitbucket (+ others): absolute commit date", "short_name": "DatesConverter", "description": "Converts dates from relative format to absolute (format presets) for Bitbucket.org, may for *.atlassian.com(jira) ...", "version": "2.2.0", "background": { "persistent": true, "scripts": [ "background.min.js", "sharedCode.min.js" ] }, "browser_action": { "default_icon": "icons\/48.png", "default_popup": "popup.html", "default_title": "Absolute dates of commits" }, "permissions": [ "tabs", "activeTab", "storage" ], "icons": { "48": "icons\/48.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "sharedCode.min.js", "content_script.min.js" ] } ] } |