

Invisible Frames
Item Frame Visibility Control
This mod adds a simple way to toggle the visibility of item frames in Minecraft. To make a frame invisible or restore its normal appearance, simply press Shift + Right-Click on the desired frame.
Permission System
Using this feature requires the invisibleframes.toggleframes
permission. This allows server administrators to control who can change frame visibility.
Configuration Settings
The mod offers several useful options for fine-tuning behavior:
Frame Locking: When the lock-frame
parameter is set to true
, invisible frames are automatically locked, preventing accidental item drops. This is especially useful for protecting valuable exhibits.
Empty Frame Toggling: The toggle-empty
option is disabled by default (false
), preventing random invisible frames from appearing throughout the world. If this feature is enabled, you can change the visibility of even empty frames.
Item Blacklist: You can create a list of items for which frame visibility cannot be changed. Items are specified in the same format used in the standard /give
command.
Development Integration
For developers wanting to use this mod in their projects:
<repository>
<id>modrinth-repo</id>
<url>https://api.modrinth.com/maven/</url>
</repository>
<dependency>
<groupId>maven.modrinth</groupId>
<artifactId>invisible-frames</artifactId>
<version>1.2</version>
<scope>provided</scope>
</dependency>
exclusiveContent {
forRepository { maven { url = "https://api.modrinth.com/maven" } }
filter { includeGroup "maven.modrinth" }
}
dependencies {
compileOnly 'maven.modrinth:invisible-frames:1.2'
}
If you use a Purpur server, check out the PurpurExtras plugin, which offers similar gameplay improvements.