Skip to content

Instantly share code, notes, and snippets.

@gitname
Last active March 7, 2018 00:56
Show Gist options
  • Save gitname/682ea7f1666bc5b86299e9d3281e466c to your computer and use it in GitHub Desktop.
Save gitname/682ea7f1666bc5b86299e9d3281e466c to your computer and use it in GitHub Desktop.
Reveal Airbnb Wish List content without creating Airbnb account

By default, the Wish List content is blurred and hidden behind a signup prompt.

You can copy/paste the bookmarklet code from bookmarklet.js into your Chrome JavaScript console (F12) and run it there. As of today, doing so will reveal the Wish List content.

(function($) {
// Remove the Signup overlay.
$('div[aria-labelledby="dls-modal__Signup"]')
.parent('div')
.parent('div')
.parent('div')
.remove();
// Un-blur the Wish List content.
var contentElementStyle = $('main#site-content > div[data-hypernova-key="wishlistsindexbundlejs"] > div[data-reactroot] > div > div').get(0).style;
contentElementStyle.setProperty('filter', 'unset', 'important');
contentElementStyle.setProperty('-webkit-filter', 'unset', 'important');
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment