AWS Favicons

Favicons for all AWS services

AWS Favicons là gì?

AWS Favicons là một tiện ích mở rộng Chrome được phát triển bởi Maddison Hellstrom, và tính năng chính của nó là "Favicons for all AWS services".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng AWS Favicons

Tải xuống các tệp mở rộng AWS 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

                        Tired of all your AWS browser tabs having the same orange cube favicon? This extension fixes that by setting the favicon to the appropriate one for the current service.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên AWS Favicons AWS Favicons
ID hpiicbcmcbcjppjembmamenajemlanli
URL Chính Thức https://chromewebstore.google.com/detail/aws-favicons/hpiicbcmcbcjppjembmamenajemlanli
Mô tả Favicons for all AWS services
Kích Thước Tệp 327 KB
Số Lần Cài Đặt 802
Phiên Bản Hiện Tại 0.2.0
Cập Nhật Lần Cuối 2022-09-17
Ngày Phát Hành 2022-09-17
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Maddison Hellstrom
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/b0o/aws-favicons-webextension
URL Trang Trợ Giúp https://github.com/b0o/aws-favicons-webextension/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AWS Favicons",
    "description": "Favicons for all AWS services",
    "version": "0.2.0",
    "author": "Maddison Hellstrom",
    "icons": {
        "32": "assets\/extension-icon-32.png",
        "64": "assets\/extension-icon-64.png",
        "128": "assets\/extension-icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.aws.amazon.com\/*"
            ],
            "js": [
                "bundle.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*"
            ],
            "matches": [
                "https:\/\/*.aws.amazon.com\/*"
            ]
        }
    ]
}