force_delete/manifest.json

27 lines
502 B
JSON
Raw Permalink Normal View History

2024-10-03 00:09:46 +00:00
{
2024-10-03 02:10:25 +00:00
"manifest_version": 3,
2024-10-04 04:12:03 +00:00
"name": "Koishi ~~ Hello- I'm behind you right now. ~~",
2024-10-03 00:09:46 +00:00
"version": "1.0",
2024-10-04 04:12:03 +00:00
"description": "Hello- I'm behind you right now.",
"icons": {
"48": "icons/koishi.webp"
},
2024-10-03 00:09:46 +00:00
"content_scripts": [
{
"matches": ["*://*.console.aws.amazon.com/*"],
2024-10-04 04:12:03 +00:00
"js": [
2024-10-08 10:11:05 +00:00
"force_delete.js"
],
"css": [
"force_delete.css"
2024-10-04 04:12:03 +00:00
],
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
}
]
}