Skip to content

Instantly share code, notes, and snippets.

@toffebjorkskog
Created November 21, 2012 08:24
Show Gist options
  • Save toffebjorkskog/4123793 to your computer and use it in GitHub Desktop.
Save toffebjorkskog/4123793 to your computer and use it in GitHub Desktop.
Bookmarklet for adding facebook page to tab
javascript:(function(){
var app_id = prompt("I can ha aPp id?");
var redirect_url = prompt("I can haz redirect url. ie the site where it is");
var new_url = "https://www.facebook.com/dialog/pagetab?app_id="+app_id+"&display=popup&next=" + redirect_url;
window.top.location = new_url;
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment