Azure Favicons
Sets favicons to match the azure service you're working with on a given tab
什麼是Azure Favicons?
Azure Favicons是由hugom開發的Chrome擴展程式,該擴展的主要功能是“Sets favicons to match the azure service you're working with on a given tab”。
擴展截圖
下載Azure Favicons擴展crx文件
下載Azure Favicons擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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/"
擴展基本資訊
名稱 | Azure Favicons |
ID | dkcckmcgbebifemhbiikekfpcdjccgfh |
官方網址 | https://chromewebstore.google.com/detail/azure-favicons/dkcckmcgbebifemhbiikekfpcdjccgfh |
簡介 | Sets favicons to match the azure service you're working with on a given tab |
檔案大小 | 367 KB |
安裝次數 | 361 |
目前版本 | 1.1.4 |
更新時間 | 2022-11-20 |
上架時間 | 2022-10-15 |
評分 | 5.00/5 共 5 次評分 |
開發者 | hugom |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/dragonoverlord3000/Azure-favicon-CE |
支援的語言 | 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\/*" ] } |