Repo creation date checker for Github
Check creation date and last updated date of repo's on Github.
Repo creation date checker for Github là gì?
Repo creation date checker for Github là một tiện ích mở rộng Chrome được phát triển bởi http://github.com/NeekSandhu, và tính năng chính của nó là "Check creation date and last updated date of repo's on Github.".
Ả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 Repo creation date checker for Github
Tải xuống các tệp mở rộng Repo creation date checker for Github 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
Ever wondered how long a project has been around? OR you quickly want to know when it was last updated. This simple extension adds two additional labels in the repo details bar, one for when the repo was created and the other for when it was last updated!! Source code/Contribution https://github.com/NeekSandhu/Repo-creation-date-checker-for-Github
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | gmfnjoaiijannkmjppchbknjdghpmleg |
URL Chính Thức | https://chromewebstore.google.com/detail/repo-creation-date-checke/gmfnjoaiijannkmjppchbknjdghpmleg |
Mô tả | Check creation date and last updated date of repo's on Github. |
Kích Thước Tệp | 97.66 KB |
Số Lần Cài Đặt | 250 |
Phiên Bản Hiện Tại | 1.1.0 |
Cập Nhật Lần Cuối | 2018-01-12 |
Ngày Phát Hành | 2018-01-12 |
Đánh Giá | 2.67/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | http://github.com/NeekSandhu |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Repo creation date checker for Github", "version": "1.1.0", "description": "Check creation date and last updated date of repo's on Github.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "author": "http:\/\/github.com\/NeekSandhu", "background": { "scripts": [ "src\/js\/bg.js" ], "persistent": true }, "homepage_url": "http:\/\/github.com\/NeekSandhu", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "src\/js\/injected.js" ], "css": [ "src\/css\/main.css" ], "run_at": "document_start" } ] } |