Recipe Cleaner
Get just the recipe from any recipe page without the life story.
Installation:
Drag this button to your bookmarks bar:
Source Code:
javascript:(function(){
var currentUrl = encodeURIComponent(window.location.href);
var justTheRecipeUrl = 'https://www.justtherecipe.com/?url=' + currentUrl;
window.open(justTheRecipeUrl, '_blank');
})();