Files
2025-03-31 23:41:36 +02:00

20 lines
446 B
JSON

{
"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"]
}
]
}