Feature request - Custom loot table per container

it will make this plugin perfect if it was posible to configure a loot table per each container, example:

"crate_elite": {
"Enabled": true,
"Extra Items Min": 0,
"Extra Items Max": 1,
"Loot Multiplier": 1.0,
"Utilize Vanilla Loot Tables on Default Loot": true,
"Utilize Vanilla Loot Tables on Extra Loot": true,
"Utilize Random Rarity (depending on Items ALREADY in the container)": true,
"Rarity To Use (ONLY if 'Utilize Vanilla Loot Tables' is FALSE & 'Utilize Random Rarity' is FALSE | 0 = None, 1 = Common, 2 = Uncommon, 3 = Rare, 4 = Very Rare)": [
1,
2,
3,
4
],
"Custom Loot Table": [
"carburetor3": 2.0,
"crankshaft3": 2.0,
],
"Custom Extra Loot Table": [
"carburetor3": 2.0,
"crankshaft3": 2.0,
],
}

Hey, currently this isn't quite possible due to the experimental implementation I went for (can't distinguish the containers). Basically it edits rust loot data instead of modifying on loot spawn. Generally performance wise its a bit nicer to have this but turns out it quite limits a few things and comes with a lot of issues.