Automatically fills the confirmation message to delete a resource in AWS
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
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"
}