🎉 Initial Commit

This commit is contained in:
2025-03-31 23:41:36 +02:00
commit e4b41ab15b
3 changed files with 70 additions and 0 deletions

19
manifest.json Normal file
View File

@@ -0,0 +1,19 @@
{
"manifest_version": 3,
"name": "Azure Group By Type",
"version": "1.0",
"description": "Automatically selects 'Group By Type' in the Azure portal.",
"permissions": [
"activeTab",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://portal.azure.com/*"],
"js": ["content.js"]
}
]
}