force_delete/manifest.json

18 lines
356 B
JSON
Raw Normal View History

2024-10-03 00:09:46 +00:00
{
2024-10-03 02:10:25 +00:00
"manifest_version": 3,
2024-10-03 00:09:46 +00:00
"name": "force_delete",
"version": "1.0",
"description": "automatically types AWS's delete-safe words",
"content_scripts": [
{
"matches": ["*://*.console.aws.amazon.com/*"],
"js": ["main.js"],
2024-10-03 02:10:25 +00:00
"all_frames": true,
"match_about_blank": true,
"match_origin_as_fallback": true
2024-10-03 00:09:46 +00:00
}
]
}