AWS Account Helper

Shows an extra header to identify the current AWS Account

AWS Account Helperคืออะไร?

AWS Account Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Marco Mans และคุณลักษณะหลักของมันคือ "Shows an extra header to identify the current AWS Account"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AWS Account Helper

ดาวน์โหลดไฟล์ส่วนขยาย AWS Account Helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Add an additional custom header on the console page of each of your AWS accounts.

Release Notes:
2.1.0
    - Adapted to new AWS Console layout
    - Updated code to Manifest v3

2.0.4
    - Adapted to new AWS Console layout

2.0.3
    - Fixed bug where the AWS account was not recognized at load

2.0.2
    - Fixed bug where popup did not open after a while
    - Fixed font of custom header text

2.0.1
    - Fixed Mac second monitor bug
    - Added "console.aws.amazon.com" (without prefix) as active sites

2.0.0 
    - First initial test-release

Do you like this extension? Does it also prevents you to do nasty stuff on the wrong account? Then.... please buy me a beer ;) https://www.buymeacoffee.com/marcomans                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ AWS Account Helper AWS Account Helper
ID hekiblnoggmmilmmanmepmekikfljail
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/aws-account-helper/hekiblnoggmmilmmanmepmekikfljail
คำอธิบาย Shows an extra header to identify the current AWS Account
ขนาดไฟล์ 130 KB
จำนวนการติดตั้ง 70
เวอร์ชันปัจจุบัน 2.1.0
อัปเดตครั้งล่าสุด 2023-06-19
วันที่เผยแพร่ 2021-01-06
คะแนน 4.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Marco Mans
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AWS Account Helper",
    "version": "2.1.0",
    "description": "Shows an extra header to identify the current AWS Account",
    "options_page": "views\/options.html",
    "options_ui": {
        "page": "options\/options.html"
    },
    "action": {
        "default_icon": {
            "16": "images\/aah16.png",
            "32": "images\/aah32.png",
            "48": "images\/aah32.png",
            "128": "images\/aah32.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "images\/aah16.png",
        "32": "images\/aah32.png",
        "48": "images\/aah32.png",
        "128": "images\/aah32.png"
    },
    "permissions": [
        "declarativeContent",
        "notifications",
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.console.aws.amazon.com\/*",
                "*:\/\/console.aws.amazon.com\/*"
            ],
            "js": [
                "lib\/jquery-3.5.1.js",
                "content\/content_script.js"
            ],
            "css": [
                "content\/content.css"
            ],
            "run_at": "document_idle"
        }
    ]
}