Book Summarizer
About this app
Summarize large books quickly
Book Summarizer 📚 Book Summarizer Summarize
Related apps
Put this on your site
Source
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Book Summarizer</title>
<meta name="description" content="Summarize large books quickly">
<meta name="keywords" content="book, summarizer, summary, text">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap" rel="stylesheet">
<style>
body {
background: linear-gradient(to right, #ff9966, #ff5e62);
font-family: 'Quicksand', sans-serif;
}
#main-container {
margin-top: 20px;
color: white;
}
.emoji {
font-size: 2em;
}
</style>
<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
document.getElementById('summarize-button').addEventListener('click', function() {
let originalText = document.getElementById('text-input').value;
fetch('https://api.smmry.com/&SM_API_KEY=YOUR_SMMRY_API_KEY&SM_LENGTH=7', {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
body: 'sm_api_input=' + encodeURIComponent(originalText)
})
.then(response => response.json())
.then(data => {
document.getElementById('summary-output').value = data.sm_api_content;
})
.catch((error) => {
alert('Error:' + error);
});
});
});
} catch (error) {
throw error;
}
</script>
</head>
<body>
<div id="main-container" class="container text-center">
<h1 class="emoji">📚</h1>
<h1>Book Summarizer</h1>
<textarea id="text-input" class="form-control" rows="10" placeholder="Paste your text here or provide a webpage URL..."></textarea>
<button id="summarize-button" class="btn btn-light" style="margin-top: 10px;">Summarize</button>
<textarea id="summary-output" class="form-control" rows="10" placeholder="Your summary will appear here..." readonly style="margin-top: 10px;"></textarea>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!