Github Annotator
Show user details and repository info in a tooltip.
Github Annotator là gì?
Github Annotator là một tiện ích mở rộng Chrome được phát triển bởi Mesut Tasci, và tính năng chính của nó là "Show user details and repository info in a tooltip.".
Ả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 Github Annotator
Tải xuống các tệp mở rộng Github Annotator 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
Show user,repo and gist informations in a tooltip at news feed. With this extension, you don't have to visit the user's or repos' own pages. Extension source code: https://github.com/mesuutt/github-annotator
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Github Annotator |
ID | epmbkocbfiejffcjahjhncadlipmdime |
URL Chính Thức | https://chromewebstore.google.com/detail/github-annotator/epmbkocbfiejffcjahjhncadlipmdime |
Mô tả | Show user details and repository info in a tooltip. |
Kích Thước Tệp | 81.68 KB |
Số Lần Cài Đặt | 214 |
Phiên Bản Hiện Tại | 2.1 |
Cập Nhật Lần Cuối | 2017-10-22 |
Ngày Phát Hành | 2017-10-22 |
Đánh Giá | 4.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Mesut Tasci |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://github.com/mesuutt/github-annotator |
URL Trang Trợ Giúp | https://github.com/mesuutt/github-annotator/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Annotator", "description": "Show user details and repository info in a tooltip.", "manifest_version": 2, "version": "2.1", "permissions": [ "storage" ], "content_scripts": [ { "js": [ "jquery-1.9.1.min.js", "contentscript.js" ], "css": [ "style.css" ], "matches": [ "https:\/\/github.com\/" ] } ], "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "icons": { "128": "icons\/icon128.png", "48": "icons\/icon48.png", "16": "icons\/icon16.png" } } |