# Strapi plugins
Strapi comes with these officially supported plugins:
# Automatic plugins discovery
Strapi automatically loads plugins installed with npm. Under the hood, Strapi scans every package.json
file of the project dependencies, and looks for the following declaration:
"strapi": {
"kind": "plugin"
}
1
2
3
2
3
Installed plugins can also be manually enabled or disabled.
# Manual enabling/disabling
To disable a plugin without uninstalling it, switch its enabled
key to false
in the /config/plugins.js
file.
🤓 To go further
- To know more about plugins installation, see the User guide.
- Existing plugins can be extended, or you can even create your own!