Azure Favicons
Sets favicons to match the azure service you're working with on a given tab
Azure Favicons là gì?
Azure Favicons là một tiện ích mở rộng Chrome được phát triển bởi hugom, và tính năng chính của nó là "Sets favicons to match the azure service you're working with on a given tab".
Ả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 Favicons
Tải xuống các tệp mở rộng Azure Favicons 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
Improve your Microsoft Azure experience with favicons that reflect the azure service you're using. The "Azure Favicon" chrome extension sets favicons for a lot of Microsoft Azure services. With more than 200 services, any Microsoft Azure heavyweight have had the experience of having a billion azure tabs open, which slows down your productivity and make your tab navigation unnecessarily difficult. But with the "Azure Favicon" chrome extension, you won't have this experience ever again! For any security concerns, you can see the source code here: "https://github.com/dragonoverlord3000/Azure-favicon-CE" or you can download the CE and view the source code directly: "https://www.maketecheasier.com/view-source-code-chrome-extension/"
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Azure Favicons |
ID | dkcckmcgbebifemhbiikekfpcdjccgfh |
URL Chính Thức | https://chromewebstore.google.com/detail/azure-favicons/dkcckmcgbebifemhbiikekfpcdjccgfh |
Mô tả | Sets favicons to match the azure service you're working with on a given tab |
Kích Thước Tệp | 367 KB |
Số Lần Cài Đặt | 361 |
Phiên Bản Hiện Tại | 1.1.4 |
Cập Nhật Lần Cuối | 2022-11-20 |
Ngày Phát Hành | 2022-10-15 |
Đánh Giá | 5.00/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | hugom |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/dragonoverlord3000/Azure-favicon-CE |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Azure Favicons", "version": "1.1.4", "icons": { "16": "icon.png", "32": "icon.png", "48": "icon.png", "128": "icon.png" }, "description": "Sets favicons to match the azure service you're working with on a given tab", "action": { "default_icon": "icon.png", "default_title": "Azure Favicons", "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/portal.azure.com\/*", "https:\/\/endpoint.microsoft.com\/*" ], "js": [ "contentScript.js" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "tabs", "scripting" ], "host_permissions": [ "https:\/\/portal.azure.com\/*", "https:\/\/endpoint.microsoft.com\/*" ] } |