AWS console autofill delete

Automatically fills the confirmation message to delete a resource in AWS

AWS console autofill delete란 무엇입니까?

AWS console autofill delete은(는) Mickael B.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically fills the confirmation message to delete a resource in AWS"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

AWS console autofill delete 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Tired of filling the deletion confirmation modal to delete a resource on AWS console ? This extension automatically fills the input for you. And it works in any language.

The automatic filling is implemented for more than 25 services, including:

- Access Analyzer
- ACM
- Api Gateway
- AppFlow
- Athena
- CloudWatch
- Cognito
- Config
- DocumentDB
- DynamoDB
- EC2
- ECR
- EFS
- Elastic Beanstalk
- EventBridge
- IAM
- Kinesis (Firehose & Analytics)
- KMS
- Lambda
- Route53
- S3
- Service Catalog
- Single Sign-On
- SNS
- SQS
- VPC
- QLDB
- WAF

More services are to come. You can open an issue or contribute if you'd like a service to be implemented.
Sometimes AWS updates their interfaces and the extension might stop working for some services. If this is the case, let me know so I can update the extension.                    

확장 프로그램 기본 정보

이름 AWS console autofill delete AWS console autofill delete
ID hmndplgjjgpdbcofbmbiejojppbgdbbg
공식 URL https://chromewebstore.google.com/detail/aws-console-autofill-dele/hmndplgjjgpdbcofbmbiejojppbgdbbg
설명 Automatically fills the confirmation message to delete a resource in AWS
파일 크기 11.8 KB
설치 횟수 69
현재 버전 2.10
최근 업데이트 2023-08-24
출시 날짜 2022-07-20
평점 4.50/5 총 2 개의 평점
개발자 Mickael B.
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/BourgoisMickael/aws-console-autofill-delete
도움말 페이지 URL https://github.com/BourgoisMickael/aws-console-autofill-delete/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AWS console autofill delete",
    "description": "Automatically fills the confirmation message to delete a resource in AWS",
    "version": "2.10",
    "manifest_version": 3,
    "action": {
        "default_icon": "logo.png",
        "default_title": "AWS console autofill delete"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.console.aws.amazon.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "author": "Mickael Bourgois"
}