Azure DevOps Search
Minimalist extension to quickly and easily search your Azure DevOps project.
Azure DevOps Search là gì?
Azure DevOps Search là một tiện ích mở rộng Chrome được phát triển bởi emragins, và tính năng chính của nó là "Minimalist extension to quickly and easily search your Azure DevOps project.".
Ả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 Azure DevOps Search
Tải xuống các tệp mở rộng Azure DevOps Search 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
~~ Introduction ~~ Coworker: Did you get a chance to review 32337? Before your eyes start to glaze over, you open up chrome, hit alt+shift+d, type in '32337' in the little pop-up, and hit enter. A new tab opens with work item 32337, and you can tell your coworker that yes, you have -- didn't they see your comments? ~~ Settings ~~ Settings are straight-forward and based off the URL following the format of https://Organization.visualstudio.com/Project/ or https://dev.azure.com/Organization/Project/ ~~ Searching ~~ ALT+SHIFT+D: Quick open pop-up window for mouse-free use. If you type in a number, it will attempt to open the work item directly. If you type in something that isn't a number, it will start a search in your project, instead. In both cases a new tab will be opened by default. ----- This extension is not affiliated with Microsoft or Azure DevOps. Please do not email for support. I do not monitor the public email address.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Azure DevOps Search |
ID | lkekpihgelhgldiebondhekgehcmjegj |
URL Chính Thức | https://chromewebstore.google.com/detail/azure-devops-search/lkekpihgelhgldiebondhekgehcmjegj |
Mô tả | Minimalist extension to quickly and easily search your Azure DevOps project. |
Kích Thước Tệp | 30.91 KB |
Số Lần Cài Đặt | 140 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2021-06-02 |
Ngày Phát Hành | 2021-06-02 |
Đánh Giá | 4.75/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | emragins |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/emragins/chrome-azure-devops |
URL Trang Trợ Giúp | https://github.com/emragins/chrome-azure-devops/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Azure DevOps Search", "description": "Minimalist extension to quickly and easily search your Azure DevOps project.", "version": "1.0.2", "author": "Eve Ragins", "options_page": "options.html", "browser_action": { "default_title": "Search Azure DevOps", "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Alt+Shift+D" } } }, "permissions": [ "storage" ] } |