From 7c5f5ed3519fcb5c5ed0ed8c6478cc42bebba192 Mon Sep 17 00:00:00 2001 From: rhunk <101876869+rhunk@users.noreply.github.com> Date: Mon, 25 Dec 2023 12:16:13 +0100 Subject: [PATCH] docs: script permissions --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9e77b4d..e9dbd44 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Every script written for the Scripting Engine must include a header section at t // ==/SE_module== ``` The following fields are required: `name`, `version`, `author`
-Additionally, there are also optional fields available which are: `displayName`, `description`, `minSnapchatVersion`, `minSEVersion`, `grantedPermissions` +Additionally, there are also optional fields available which are: `displayName`, `description`, `minSnapchatVersion`, `minSEVersion`, `permissions` ### Field Description @@ -27,7 +27,7 @@ Additionally, there are also optional fields available which are: `displayName`, `description`: Brief explanation of the script's functionality.
`minSnapchatVersion`: Minimum required Snapchat version code (e.g., 106822).
`minSEVersion`: Minimum required SnapEnhance version code (e.g., ).
-`grantedPermissions`: - +`permissions`: Grant permissions to the script (e.g. unsafe-classloader) ## Examples To start off, you can find a couple of Example scripts written by us [here](https://github.com/SnapEnhance/docs/tree/main/examples).