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”。
扩展截图
下载AWS console autofill delete扩展crx文件
下载AWS console autofill delete扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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"
} | |