OCplan PDF Generator

Automatisk PDF-generering for OCplan dokumenter

As of June 2026, OCplan PDF Generator has 2 users in the Developer Tools category.

Usersno change0%
2
2
Ratingno change0%
— reviews
Reviewsno change0%
Version
1.0.0
Manifest V3

History

4 snapshots

Tracking since Apr 17, 2026.

2.081.50.9199999999999999Apr 17, 2026Jun 9, 2026
View as table
DateUsersRatingReviewsVersion
Apr 17, 20261.0.0
Apr 27, 20261.0.0
Jun 4, 20261.0.0
Jun 9, 202611.0.0
Now21.0.0

Permissions & access

Permissions
debugger
Host access
None declared

Screenshots

OCplan PDF Generator screenshot 1

About

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).

Technical

Version
1.0.0
Manifest
V3
Size
37.69KiB
Min Chrome
88
Languages
1
Featured
No

Metadata

ID
ghnfdmooncdgeklipkibkpbfbjfdiane
Developer ID
ua5a372001c7dd9f1180e296e51c30a9c
Developer Email
[email protected]
Created
Mar 11, 2026
Last Updated (Store)
Mar 11, 2026
Last Scraped
Jun 9, 2026
Website
Support URL
Privacy Policy

Similar extensions

Alternatives to OCplan PDF Generator, ranked by description similarity.

Data sourced from the Chrome Web Store · last verified Jun 9, 2026.