api/Utils.java
Utils.canBeUploaded
if (extensionsToFilter.contains(extension)) {
return false;
}
if you want exclude .json, it will exclude .js files too
It should split the extensionsToFilter String by ';' into an array and compare the single entry strings on lowercase