force_delete/manifest.json

36 lines
676 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-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"
},
"action": {
"default_icon": "icons/koishi.webp",
"default_title": "Koishi",
"default_popup": "popup/index.html"
},
"host_permissions": [
"*://*.console.aws.amazon.com/*"
],
2024-10-03 00:09:46 +00:00
"content_scripts": [
{
"matches": ["*://*.console.aws.amazon.com/*"],
2024-10-04 04:12:03 +00:00
"js": [
"force_delete.js",
"form_saver.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
}
]
}