diff --git a/src/components/Map/Drawer/AvailablePluginsDrawer/LoadPlugin/LoadPlugin.component.tsx b/src/components/Map/Drawer/AvailablePluginsDrawer/LoadPlugin/LoadPlugin.component.tsx
index b074ab0a0b66d09a2be8478fa69dff7fcdbac539..84828eeb9725d49f33013f6695f91075d264bbeb 100644
--- a/src/components/Map/Drawer/AvailablePluginsDrawer/LoadPlugin/LoadPlugin.component.tsx
+++ b/src/components/Map/Drawer/AvailablePluginsDrawer/LoadPlugin/LoadPlugin.component.tsx
@@ -16,7 +16,9 @@ export const LoadPlugin = ({ plugin }: Props): JSX.Element => {
     hash: plugin.hash,
     pluginUrl: plugin.urls[0],
     onPluginLoaded: () => {
-      dispatch(setCurrentDrawerPluginHash(plugin.hash));
+      if (!plugin.withoutPanel) {
+        dispatch(setCurrentDrawerPluginHash(plugin.hash));
+      }
     },
   });
 
diff --git a/src/components/Map/Drawer/AvailablePluginsDrawer/LoadPlugin/hooks/useLoadPlugin.ts b/src/components/Map/Drawer/AvailablePluginsDrawer/LoadPlugin/hooks/useLoadPlugin.ts
index 2277454af3e2ed561c7b53b705e7e418114ce35d..7d0674856fe50b9fdf9f926b6c5536254cec4ede 100644
--- a/src/components/Map/Drawer/AvailablePluginsDrawer/LoadPlugin/hooks/useLoadPlugin.ts
+++ b/src/components/Map/Drawer/AvailablePluginsDrawer/LoadPlugin/hooks/useLoadPlugin.ts
@@ -3,7 +3,7 @@ import { useAppSelector } from '@/redux/hooks/useAppSelector';
 import { isActiveLegendSelector } from '@/redux/legend/legend.selectors';
 import { removePluginLegend, setDefaultLegendId } from '@/redux/legend/legend.slice';
 import {
-  allActivePluginsSelector,
+  allActivePluginsWithPanelSelector,
   isPluginActiveSelector,
   isPluginLoadingSelector,
   isPluginSelectedSelector,
@@ -42,12 +42,12 @@ export const useLoadPlugin = ({
   const isPluginLoading = useAppSelector(state => isPluginLoadingSelector(state, hash));
   const isPluginSelected = useAppSelector(state => isPluginSelectedSelector(state, hash));
   const isActivePluginLegend = useAppSelector(state => isActiveLegendSelector(state, hash));
-  const allActivePlugins = useAppSelector(allActivePluginsSelector);
+  const allActivePluginsWithPanel = useAppSelector(allActivePluginsWithPanelSelector);
 
   const dispatch = useAppDispatch();
 
   const setLastPluginAsCurrentActivePlugin = (): void => {
-    const newAllActivePlugins = allActivePlugins.filter(p => p.hash !== hash);
+    const newAllActivePlugins = allActivePluginsWithPanel.filter(p => p.hash !== hash);
     const lastActivePlugin = newAllActivePlugins.pop();
     if (lastActivePlugin) {
       dispatch(setCurrentDrawerPluginHash(lastActivePlugin.hash));
diff --git a/src/components/Map/PluginsDrawer/PluginsHeader/PluginHeaderInfo/PluginHeaderInfo.component.tsx b/src/components/Map/PluginsDrawer/PluginsHeader/PluginHeaderInfo/PluginHeaderInfo.component.tsx
index 7e5df8a4309f7e2f5bc6d40e33f3b8fe6b5b37f1..02093290b1d7f591643e825150b97d0de38ac74f 100644
--- a/src/components/Map/PluginsDrawer/PluginsHeader/PluginHeaderInfo/PluginHeaderInfo.component.tsx
+++ b/src/components/Map/PluginsDrawer/PluginsHeader/PluginHeaderInfo/PluginHeaderInfo.component.tsx
@@ -17,7 +17,9 @@ export const PluginHeaderInfo = ({ plugin }: Props): JSX.Element => {
     hash: plugin.hash,
     pluginUrl: plugin.urls[FIRST_ARRAY_ELEMENT],
     onPluginLoaded: () => {
-      dispatch(setCurrentDrawerPluginHash(plugin.hash));
+      if (!plugin.withoutPanel) {
+        dispatch(setCurrentDrawerPluginHash(plugin.hash));
+      }
     },
   });
 
diff --git a/src/components/Map/PluginsDrawer/PluginsHeader/PluginOpenButton/LoadPluginElement/LoadPluginElement.component.tsx b/src/components/Map/PluginsDrawer/PluginsHeader/PluginOpenButton/LoadPluginElement/LoadPluginElement.component.tsx
index cdd827c84de9d89450bda307781fcecc2d2c81b4..24fd5bae61f2eb54edc0a24da7ce8f2c63144ba6 100644
--- a/src/components/Map/PluginsDrawer/PluginsHeader/PluginOpenButton/LoadPluginElement/LoadPluginElement.component.tsx
+++ b/src/components/Map/PluginsDrawer/PluginsHeader/PluginOpenButton/LoadPluginElement/LoadPluginElement.component.tsx
@@ -19,7 +19,9 @@ export const LoadPluginElement = ({ plugin }: LoadPluginButtonProps): JSX.Elemen
     hash,
     pluginUrl: urls[FIRST_ARRAY_ELEMENT],
     onPluginLoaded: () => {
-      dispatch(setCurrentDrawerPluginHash(hash));
+      if (!plugin.withoutPanel) {
+        dispatch(setCurrentDrawerPluginHash(hash));
+      }
     },
   });
 
diff --git a/src/components/Map/PluginsDrawer/PluginsTabs/PluginSingleTab/PluginSingleTab.component.tsx b/src/components/Map/PluginsDrawer/PluginsTabs/PluginSingleTab/PluginSingleTab.component.tsx
index 39e12e5bd6dc72e15886011a4691eca508eec595..1b08cb64810d8871f6a9a1936f83e03c24b98f58 100644
--- a/src/components/Map/PluginsDrawer/PluginsTabs/PluginSingleTab/PluginSingleTab.component.tsx
+++ b/src/components/Map/PluginsDrawer/PluginsTabs/PluginSingleTab/PluginSingleTab.component.tsx
@@ -21,7 +21,9 @@ export const PluginSingleTab = ({ plugin }: Props): JSX.Element => {
   });
 
   const onPluginTabClick = (): void => {
-    dispatch(setCurrentDrawerPluginHash(plugin.hash));
+    if (!plugin.withoutPanel) {
+      dispatch(setCurrentDrawerPluginHash(plugin.hash));
+    }
   };
 
   const onPluginUnload = (event: React.MouseEvent<HTMLDivElement>): void => {
diff --git a/src/components/Map/PluginsDrawer/PluginsTabs/PluginsTabs.component.tsx b/src/components/Map/PluginsDrawer/PluginsTabs/PluginsTabs.component.tsx
index 90e8f679770da1041d18aa5a24fdb6efd9116290..a37a3e9d9b247451ba961ba2a0284671eb2ac34b 100644
--- a/src/components/Map/PluginsDrawer/PluginsTabs/PluginsTabs.component.tsx
+++ b/src/components/Map/PluginsDrawer/PluginsTabs/PluginsTabs.component.tsx
@@ -1,12 +1,12 @@
 /* eslint-disable jsx-a11y/click-events-have-key-events */
 import { ZERO } from '@/constants/common';
 import { useAppSelector } from '@/redux/hooks/useAppSelector';
-import { allActivePluginsSelector } from '@/redux/plugins/plugins.selectors';
+import { allActivePluginsWithPanelSelector } from '@/redux/plugins/plugins.selectors';
 import { useMemo } from 'react';
 import { PluginSingleTab } from './PluginSingleTab';
 
 export const PluginsTabs = (): JSX.Element => {
-  const allActivePlugins = useAppSelector(allActivePluginsSelector);
+  const allActivePlugins = useAppSelector(allActivePluginsWithPanelSelector);
   const isPluginsEmpty = allActivePlugins.length === ZERO;
 
   const pluginsTabs = allActivePlugins.map(plugin => (
diff --git a/src/models/pluginSchema.ts b/src/models/pluginSchema.ts
index 2cfb0725fc31a652b5db6d5e38996002eb262af9..1672060334933570c848cbb058fcfab9724c226d 100644
--- a/src/models/pluginSchema.ts
+++ b/src/models/pluginSchema.ts
@@ -7,5 +7,6 @@ export const pluginSchema = z.object({
   version: z.string(),
   isPublic: z.boolean(),
   isDefault: z.boolean(),
+  withoutPanel: z.boolean().nullable().optional(),
   urls: z.array(z.string().min(1)),
 });
diff --git a/src/redux/plugins/plugins.reducers.ts b/src/redux/plugins/plugins.reducers.ts
index f3d74473b3f3f80f57c8d1319ebeabf987b4412a..a4a03692ac947f2afa1e2a55f59b77f2837a4bc4 100644
--- a/src/redux/plugins/plugins.reducers.ts
+++ b/src/redux/plugins/plugins.reducers.ts
@@ -22,10 +22,12 @@ export const registerPluginReducer = (builder: ActionReducerMapBuilder<PluginsSt
   });
   builder.addCase(registerPlugin.fulfilled, (state, action) => {
     if (action.payload) {
-      const { hash } = action.meta.arg;
+      const { hash, withoutPanel } = action.meta.arg;
 
       state.activePlugins.data[hash] = action.payload;
-      state.drawer.currentPluginHash = hash;
+      if (!withoutPanel) {
+        state.drawer.currentPluginHash = hash;
+      }
     }
   });
   builder.addCase(registerPlugin.rejected, state => {
diff --git a/src/redux/plugins/plugins.selectors.ts b/src/redux/plugins/plugins.selectors.ts
index b07eb8e9e378243650e431d3495e890fb3969099..caa5d392928a68773c96e0115a0066b344039d4c 100644
--- a/src/redux/plugins/plugins.selectors.ts
+++ b/src/redux/plugins/plugins.selectors.ts
@@ -53,6 +53,10 @@ export const allActivePluginsSelector = createSelector(
   },
 );
 
+export const allActivePluginsWithPanelSelector = createSelector(allActivePluginsSelector, data => {
+  return data.filter(plugin => !plugin.withoutPanel);
+});
+
 export const privateActivePluginsSelector = createSelector(
   allActivePluginsSelector,
   activePlugins => {