AWS console autofill delete
Automatically fills the confirmation message to delete a resource in AWS
¿Qué es AWS console autofill delete?
AWS console autofill delete es una extensión de Chrome desarrollada por Mickael B., y su función principal es "Automatically fills the confirmation message to delete a resource in AWS".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión AWS console autofill delete
Descarga archivos de extensión AWS console autofill delete en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | AWS console autofill delete |
ID | hmndplgjjgpdbcofbmbiejojppbgdbbg |
URL Oficial | https://chromewebstore.google.com/detail/aws-console-autofill-dele/hmndplgjjgpdbcofbmbiejojppbgdbbg |
Descripción | Automatically fills the confirmation message to delete a resource in AWS |
Tamaño del Archivo | 11.8 KB |
Cantidad de Instalaciones | 69 |
Versión Actual | 2.10 |
Última Actualización | 2023-08-24 |
Fecha de Publicación | 2022-07-20 |
Calificación | 4.50/5 Total de 2 Calificaciones |
Desarrollador | Mickael B. |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/BourgoisMickael/aws-console-autofill-delete |
URL de la Página de Ayuda | https://github.com/BourgoisMickael/aws-console-autofill-delete/issues |
Idiomas Soportados | 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" } |