AWS Favicons
Favicons for all AWS services
什麼是AWS Favicons?
AWS Favicons是由Maddison Hellstrom開發的Chrome擴展程式,該擴展的主要功能是“Favicons for all AWS services”。
擴展截圖
下載AWS Favicons擴展crx文件
下載AWS Favicons擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | AWS Favicons |
ID | hpiicbcmcbcjppjembmamenajemlanli |
官方網址 | https://chromewebstore.google.com/detail/aws-favicons/hpiicbcmcbcjppjembmamenajemlanli |
簡介 | Favicons for all AWS services |
檔案大小 | 327 KB |
安裝次數 | 802 |
目前版本 | 0.2.0 |
更新時間 | 2022-09-17 |
上架時間 | 2022-09-17 |
評分 | 5.00/5 共 5 次評分 |
開發者 | Maddison Hellstrom |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/b0o/aws-favicons-webextension |
說明頁面URL | https://github.com/b0o/aws-favicons-webextension/issues |
支援的語言 | 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\/*" ] } ] } |