GitHub Mention Highlighter
Highlight user and team mentions on GitHub
GitHub Mention Highlighter là gì?
GitHub Mention Highlighter là một tiện ích mở rộng Chrome được phát triển bởi Ben Balter, và tính năng chính của nó là "Highlight user and team mentions 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 GitHub Mention Highlighter
Tải xuống các tệp mở rộng GitHub Mention Highlighter 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
This Chrome extension automatically highlights any time you are mentioned on a GitHub issue or pull request thread by highlighting your username, any team your a member of, and the border of any containing comment.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | GitHub Mention Highlighter |
ID | ojclbekffnkgbacniibdebdihhgenlkp |
URL Chính Thức | https://chromewebstore.google.com/detail/github-mention-highlighte/ojclbekffnkgbacniibdebdihhgenlkp |
Mô tả | Highlight user and team mentions on GitHub |
Kích Thước Tệp | 201 KB |
Số Lần Cài Đặt | 278 |
Phiên Bản Hiện Tại | 0.2.1 |
Cập Nhật Lần Cuối | 2020-02-05 |
Ngày Phát Hành | 2020-02-05 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Ben Balter |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/benbalter/github-mention-highlighter |
URL Trang Trợ Giúp | https://github.com/benbalter/github-mention-highlighter/issues |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Mention Highlighter", "version": "0.2.1", "description": "Highlight user and team mentions on GitHub", "permissions": [ "https:\/\/github.com\/*", "https:\/\/*.githubapp.com\/*", "https:\/\/mail.google.com\/*", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/*.githubapp.com\/*", "https:\/\/mail.google.com\/*" ], "js": [ "vendor\/jquery\/dist\/jquery.js", "dist\/script.js" ], "css": [ "dist\/style.css" ] } ], "icons": { "16": "img\/icon-16.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "manifest_version": 2, "options_page": "dist\/options.html", "options_ui": { "page": "dist\/options.html", "chrome_style": true } } |