css-injector-extension/manifest.json
2025-10-20 22:20:56 +02:00

32 lines
510 B
JSON

{
"manifest_version": 3,
"name": "Dynamic CSS Injector",
"version": "1.1",
"permissions": [
"storage",
"scripting",
"tabs"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"injector.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "popup.html",
"default_title": "Custom CSS"
}
}