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"입니다.

확장 프로그램 스크린샷

screenshot

Azure Favicons 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 Azure Favicons
ID dkcckmcgbebifemhbiikekfpcdjccgfh
공식 URL 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\/*"
    ]
}