There is no real way to make continuous expansion (i.e. the extension that is for every new project). However, you can export the extension as a Unity package and import it whenever you create a new project. According to the documentation on the linked page:
- In the project view, select all the asset files that you want to export.
- Choose Assets-> Export Package ... from the menu.
- Name and save the package anywhere.
- Open the project in which you want to contribute assets.
- Choose Assets-> Import Package ... from the menu.
- Select the package file saved in step 3.
This should be the easiest way to easily import your custom extensions into each project.
source share