AWS console autofill delete
Automatically fills the confirmation message to delete a resource in AWS
Τι είναι το AWS console autofill delete;
Το AWS console autofill delete είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mickael B., και η κύρια λειτουργία του είναι "Automatically fills the confirmation message to delete a resource in AWS".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης AWS console autofill delete
Λήψη αρχείων επέκτασης 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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | 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" } |