diff options
author | Alex Vitkov <alexvitkov98@gmail.com> | 2021-03-07 11:03:06 +0200 |
---|---|---|
committer | Alex Vitkov <alexvitkov98@gmail.com> | 2021-03-07 11:03:06 +0200 |
commit | 8ffaa7d90fb94b67f3c501e6205454d49846371f (patch) | |
tree | c5656ed5e22674d1a77358370bf2ca3405e2e8a8 | |
parent | 708b31b629ba9df642417bc254e7f7c2ea70c865 (diff) | |
download | fileup-8ffaa7d90fb94b67f3c501e6205454d49846371f.tar.gz |
Actions part 5 of N, superior search engine
-rw-r--r-- | actions.js | 18 |
1 files changed, 7 insertions, 11 deletions
@@ -1,18 +1,14 @@ const actions = [ { "extension": ".txt", - "text": "Google search filename", - "url": "https://www.google.com/search?q=$filename" + "text": "Bing filename", + "url": "https://www.bing.com/search?q=$filename", + "open_in_iframe": "true" }, { "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", - }, + "text": "Bing contents", + "url": "https://www.bing.com/search?q=$content_urlencoded", + "open_in_iframe": "true" + } ]; |