flashvnn / automa-note

Notes for using automa low-code/no-code browser extension

Home Page:https://www.automa.site

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Read/write storage variables

Define storage variables

automa-storage-variable

// Read the storage variables with javascript block
var value = automaRefData('variables', '$$global_links');

// Write the storage variables with javascript block
automaSetVariable('$$global_links', "UPDATED VARIABLES");

console.log(automaRefData('variables', '$$global_links'));

Access workflow variable

workflow variable

https://docs.automa.site/workflow/expressions.html

variable in setting block

{{ variables.current_url }}

Get workflow variable in Javascript block

const value = automaRefData('variables', 'current_url');

console.log("current_url", value);

automaNextBlock()

About

Notes for using automa low-code/no-code browser extension

https://www.automa.site