1 item
Automatisk PDF-generering for OCplan dokumenter Client-side PDF generation for web apps using Chrome DevTools Protocol (Page.printToPDF). Produces identical output to "Save as PDF" from the print dialog — silently, with no user interaction. Zero cost, no size limits, perfect WYSIWYG fidelity, with no pdf print server running. Built by OCplan ApS. How to integrate in your web app: 1. Install this extension 2. Detect the extension from your web app: if (window.__OCPLAN_PDF_EXTENSION__) { // Extension is available } 3. Request a PDF of the current page: const requestId = crypto.randomUUID(); window.addEventListener("message", (event) => { if (event.data?.type === "OCPLAN_PDF_RESULT" && event.data.requestId === requestId) { if (event.data.success) { const bytes = Uint8Array.from(atob(event.data.pdfBase64), c => c.charCodeAt(0)); const blob = new Blob([bytes], { type: "application/pdf" }); // Use the PDF blob (download, upload, etc.) } } }); window.postMessage({ type: "OCPLAN_GENERATE_PDF", requestId, options: { paperWidth: 8.27, paperHeight: 11.69, printBackground: true, scale: 1, marginTop: 0, marginBottom: 0, marginLeft: 0, marginRight: 0, } }, "*"); Options: paperWidth, paperHeight (inches), printBackground (boolean), scale (number), marginTop/Bottom/Left/Right (inches).
Mar 11, 2026
rating_count is the Chrome Web Store ratings count, not a written-review count.
Media assets
Screenshots and videos on the listing.
Has promo video
Whether the listing includes at least one video.
Languages
Declared language locales.
Developer website
Listing exposes a developer website URL.
Contact email
Listing exposes a contact email.
Keyword in name
Case-insensitive substring match in the name.
Keyword in description
Case-insensitive substring match in the description.
Keyword occurrences in description
Count of case-insensitive occurrences in the description.
Category user-count percentile
Share of same-category extensions with fewer users (null if unknown).
These are transparent listing completeness / keyword signals, not a prediction of Chrome Web Store search ranking.