diff options
author | Alex Vitkov <alexvitkov98@gmail.com> | 2021-03-07 10:53:00 +0200 |
---|---|---|
committer | Alex Vitkov <alexvitkov98@gmail.com> | 2021-03-07 10:53:00 +0200 |
commit | 10a9aa16bb7cfd74e360a183222d8a71d3a52574 (patch) | |
tree | c7834318f70f398e0d5e08131710254ef1898c3f /actions.js | |
parent | a670aee7f555f6eee6e3ef5d88307b9dae052db1 (diff) | |
download | fileup-10a9aa16bb7cfd74e360a183222d8a71d3a52574.tar.gz |
Actions part 3 of N, Open in iframe
Diffstat (limited to 'actions.js')
-rw-r--r-- | actions.js | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,9 +1,3 @@ - -// Patterns in the URL: -// $fileanme - filename -// $content_urlencoded - file contents, urlencoded -// $content_base64 - file contents, base64'd - const actions = [ { "extension": ".txt", @@ -14,5 +8,11 @@ const actions = [ "extension": ".txt", "text": "Google search contents", "url": "https://www.google.com/search?q=$content_urlencoded" - } + }, + { + "extension": ".txt", + "text": "ZAMUNDDA TO4KA NET", + "url": "https://zamunda.net", + "open_in_iframe": "true", + }, ]; |