Embeddable Widgets
Embed a free tool on your site
Add a PDF compressor, invoice generator, QR code maker, or other Criply tool to your site with one copy-paste. No signup, no API key, no payment.
<!-- Criply Compress PDF — free embeddable widget -->
<iframe
id="criply-compress-pdf"
src="https://criply.co/embed/pdf/compress"
width="100%"
height="540"
frameborder="0"
loading="lazy"
style="border:1px solid #e4e4e7;border-radius:12px;display:block;"
title="Compress PDF by Criply"
></iframe>
<script>
(function(){
// Auto-resize the iframe to match its contents
window.addEventListener("message", function(e){
var d = e.data;
if (!d || d.source !== "criply-embed" || d.type !== "resize") return;
var f = document.getElementById("criply-compress-pdf");
if (f && d.height) f.style.height = (d.height + 24) + "px";
});
})();
</script>Paste this HTML anywhere on your site — between <body> tags, in a CMS HTML block, or in a Markdown page that allows raw HTML. The iframe auto-resizes to fit its contents.
Free to embed. Attribution appreciated but not required.
You can use any Criply widget on any site, commercial or personal, at no cost. The small “Powered by Criply” link helps us keep the tools free — please leave it in place if you can.
Why embed a Criply widget?
- Keep visitors on your site. A useful tool on your page is a reason to stay, scroll, and engage — better than linking away to a different domain.
- Zero maintenance. We host the tool, we ship the updates, we keep it fast. You add one HTML snippet and never touch it again.
- Auto-resizing.Widgets post their height to your page so the iframe matches the tool's content. No fixed-height awkwardness, no scrollbars inside scrollbars.
- Mobile-ready. Every widget is responsive and works on phones, tablets, and desktop.
- Privacy-respecting.All client-side tools run in the visitor's browser — your users' files never touch our servers.
Frequently asked
- Do I need to sign up?
- No. The embed code is free to use, no account required. Copy the HTML and paste it into your site.
- Can I use this for a commercial site?
- Yes — personal blogs, business sites, agencies, SaaS apps, anywhere. The widgets are free to embed at any scale.
- Can I remove the “Powered by Criply” link?
- Technically yes, but please leave it in place if you can — the link is how we keep the widgets free for everyone.
- How does the iframe auto-resize work?
- Each widget watches its own height and posts updates to your page via
postMessage. The tiny script in the embed code listens for these messages and adjusts the iframe's height accordingly. - Can I request a tool I don't see here?
- Yes — send a request via the feedback page. If the tool already exists on Criply, we can usually add an embed version within a day.