You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -151,6 +151,10 @@ When Download type is Around the user, the offsets are the amount of entries aro
151
151
| Activate Steam overlay to store | Activates the Steam Overlay to the Steam store page for the provided app | App ID *(number)* <br>Flag *(combo)* <br> |
152
152
| Trigger screenshot (synchronous) | Captures the current screen and saves to Steam screenshot library (synchronous) | Tag *(string)* <br> |
153
153
| Trigger screenshot | Captures the current screen and saves to Steam screenshot library ||
154
+
| Save screenshot from URL (synchronous) | Saves an image from a URL as a Steam screenshot. The image will be loaded, converted to base64, and its dimensions calculated automatically. (synchronous) | URL *(string)* <br>Tag *(string)* <br> |
155
+
| Save screenshot from URL | Saves an image from a URL as a Steam screenshot. The image will be loaded, converted to base64, and its dimensions calculated automatically. | URL *(string)* <br> |
156
+
| Add screenshot to library (synchronous) | Adds an existing screenshot file to the Steam screenshot library. Returns the handle of the screenshot. (synchronous) | Filename *(string)* <br>Thumbnail Filename *(string)* <br>Width *(number)* <br>Height *(number)* <br>Tag *(string)* <br> |
157
+
| Add screenshot to library | Adds an existing screenshot file to the Steam screenshot library. Returns the handle of the screenshot. | Filename *(string)* <br>Thumbnail Filename *(string)* <br>Width *(number)* <br>Height *(number)* <br> |
154
158
| Check DLC is installed (synchronous) | Checks if the user owns and has installed a specific DLC (synchronous) | DLC App ID *(number)* <br>Tag *(string)* <br> |
155
159
| Check DLC is installed | Checks if the user owns and has installed a specific DLC | DLC App ID *(number)* <br> |
156
160
| Create workshop item (synchronous) | Creates a new workshop item for the specified Steam App ID and returns its ID (synchronous) | App ID *(number)* <br>Tag *(string)* <br> |
@@ -385,6 +389,14 @@ When Download type is Around the user, the offsets are the amount of entries aro
385
389
| On any "TriggerScreenshot" success | Trigger when any of the "TriggerScreenshot" are executed with success. ||
386
390
| On "TriggerScreenshot" error | Trigger when the "TriggerScreenshot" failed to execute. | Tag *(string)* <br> |
387
391
| On any "TriggerScreenshot" error | Trigger when any of the "TriggerScreenshot" failed to execute. ||
392
+
| On "SaveScreenshotFromURL" success | Trigger when the "SaveScreenshotFromURL" is executed with success. | Tag *(string)* <br> |
393
+
| On any "SaveScreenshotFromURL" success | Trigger when any of the "SaveScreenshotFromURL" are executed with success. ||
394
+
| On "SaveScreenshotFromURL" error | Trigger when the "SaveScreenshotFromURL" failed to execute. | Tag *(string)* <br> |
395
+
| On any "SaveScreenshotFromURL" error | Trigger when any of the "SaveScreenshotFromURL" failed to execute. ||
396
+
| On "AddScreenshotToLibrary" success | Trigger when the "AddScreenshotToLibrary" is executed with success. | Tag *(string)* <br> |
397
+
| On any "AddScreenshotToLibrary" success | Trigger when any of the "AddScreenshotToLibrary" are executed with success. ||
398
+
| On "AddScreenshotToLibrary" error | Trigger when the "AddScreenshotToLibrary" failed to execute. | Tag *(string)* <br> |
399
+
| On any "AddScreenshotToLibrary" error | Trigger when any of the "AddScreenshotToLibrary" failed to execute. ||
388
400
| On "CheckDLCIsInstalled" success | Trigger when the "CheckDLCIsInstalled" is executed with success. | Tag *(string)* <br> |
389
401
| On any "CheckDLCIsInstalled" success | Trigger when any of the "CheckDLCIsInstalled" are executed with success. ||
390
402
| On "CheckDLCIsInstalled" error | Trigger when the "CheckDLCIsInstalled" failed to execute. | Tag *(string)* <br> |
@@ -557,6 +569,10 @@ When Download type is Around the user, the offsets are the amount of entries aro
557
569
| ActivateToStoreResult | The result of the "ActivateToStore last call" | string ||
558
570
| TriggerScreenshotError | The error of the "TriggerScreenshot last call" | string ||
559
571
| TriggerScreenshotResult | The result of the "TriggerScreenshot last call" | string ||
572
+
| SaveScreenshotFromURLError | The error of the "SaveScreenshotFromURL last call" | string ||
573
+
| SaveScreenshotFromURLResult | The result of the "SaveScreenshotFromURL last call" | string ||
574
+
| AddScreenshotToLibraryError | The error of the "AddScreenshotToLibrary last call" | string ||
575
+
| AddScreenshotToLibraryResult | The result of the "AddScreenshotToLibrary last call" | string ||
560
576
| CheckDLCIsInstalledError | The error of the "CheckDLCIsInstalled last call" | string ||
561
577
| CheckDLCIsInstalledResult | The result of the "CheckDLCIsInstalled last call" | string ||
562
578
| CreateWorkshopItemError | The error of the "CreateWorkshopItem last call" | string ||
desc: "The URL of the image to save as a screenshot (will be converted to base64)",
1234
+
name: "URL",
1235
+
type: 'string',
1236
+
initialValue: "\"\"",
1237
+
}
1238
+
],
1239
+
listName: "Save screenshot from URL",
1240
+
displayText: "Save screenshot from URL [b]{0}[/b]",
1241
+
description: "Saves an image from a URL as a Steam screenshot. The image will be loaded, converted to base64, and its dimensions calculated automatically.",
0 commit comments