← Back to mobile capture
Safari bookmarklet
Save any page with a single tap
If you love bookmarks, this shortcut lets you open the AltShift+ capture page with the current URL already filled in.
Quick setup
- Copy the bookmarklet snippet below.
- Add a new bookmark in Safari or Chrome.
- Edit the bookmark and replace the URL with the code.
- Tap the bookmark whenever you want to capture the current page.
javascript:(function(){
const url = encodeURIComponent(window.location.href);
const title = encodeURIComponent(document.title);
window.open('https://altshift.plus/mobile?url=' + url + '&title=' + title, '_blank');
})();