mirror of
https://github.com/SnapEnhance/scripting-docs.git
synced 2026-08-30 20:24:23 +00:00
24 lines
468 B
JavaScript
24 lines
468 B
JavaScript
// ==SE_module==
|
|
// name: toasts
|
|
// displayName: Toasts
|
|
// description: Shows various toast messages
|
|
// version: 1.0
|
|
// author: John Doe
|
|
// ==/SE_module==
|
|
|
|
module.onSnapMainActivityCreate = activity => {
|
|
shortToast("Snapchat opened!")
|
|
}
|
|
|
|
module.onSnapApplicationLoad = context => {
|
|
shortToast("Snapchat loaded!")
|
|
}
|
|
|
|
module.onSnapEnhanceLoad = context => {
|
|
shortToast("SnapEnhance loaded!")
|
|
}
|
|
|
|
module.onUnload = () => {
|
|
shortToast("Script unloaded!")
|
|
}
|