Actions for Kiwi Browser
A curated list of custom actions for Kiwi Browser
Go Back
Go back to the previous webpage
window.history.back()
Go Forward
Go back to the previous webpage
window.history.forward()
Scroll to Top
Scroll to the top of the webpage
window.scrollTo({ top: 0, behavior: 'smooth' })
Scroll to Bottom
Scroll to the bottom of the webpage
window.scrollTo({ top: document.body.scrollHeight, behavior: 'smooth' })
Link in New Tab
Open a link in a new tab
window.open(params.url, '_blank')
Translate Page
Translate the current webpage with service of your choice
window.open(`https://translate.google.com/translate?sl=auto&tl=${params.language}&u=${encodeURIComponent(window.location.href)}`, '_blank')
Reload Page
Reload the current webpage
location.reload()
Copy URL
Copy the current webpage URL to the clipboard
navigator.clipboard.writeText(window.location.href)
Close Tab
Close the current tab
window.close()
Print Page
Print the current webpage
window.print()
Toggle Fullscreen
Toggle fullscreen mode for the webpage
document.documentElement.requestFullscreen()
Clear Data
Clear the local storage/cookie of the webpage
localStorage.clear();document.cookie = ''
Add to Favorites
Add the current webpage to favorites/bookmarks
window.external.AddFavorite(location.href, document.title)