diff --git a/docs/plugins/getting-started.md b/docs/plugins/getting-started.md
index b2d2e5e9f5..9765e737b0 100644
--- a/docs/plugins/getting-started.md
+++ b/docs/plugins/getting-started.md
@@ -140,7 +140,8 @@ The manifest.json file contains the basic infor
"user:read",
"comment:read",
"comment:write",
- "allow:downloads"
+ "allow:downloads",
+ "allow:localstorage"
]
}
```
@@ -173,6 +174,9 @@ Typical use cases: adding new comments to pages; deleting existing comments; rep
- allow:downloads: Allows downloading of the project file. Grants access to endpoints and operations that enable the downloading of the entire project file.
Typical use cases: downloading the full project file for backup or sharing.
+- allow:localstorage: Allows the access to the local storage proxy to store information. This info is only available for the plugin installation but be aware that a user can see this information in the browser.
+Typical use cases: storing authentication tokens for a plugin login
+
_Note: Write permissions automatically includes its corresponding read permission (e.g., content:write includes content:read) because reading is required to perform write or modification actions._
### What are plugin.ts and plugin.js files?