Pre-built packages for all BulkPicConv tools and integrations. Download and use directly — no source code compilation needed.
Website · API Docs · API Pricing
| Tool | Download | Description |
|---|---|---|
| 🧩 Chrome Extension | chrome-extension.zip | Right-click to optimize any image. AI alt text & background removal. |
| ⌨️ CLI | cli.zip | Command-line batch conversion with glob patterns. |
| 🟢 Node.js SDK | sdk-node.zip | TypeScript-first Node.js SDK. Zero dependencies. |
| 🐍 Python SDK | sdk-python.zip | Python 3.9+ SDK. No external dependencies. |
| 🐘 PHP SDK | sdk-php.zip | PHP 8.1+ SDK via Composer. |
| ⚡ Zapier / Make | zapier.zip | No-code automation for 5000+ apps. |
| 📝 WordPress Plugin | wordpress-plugin.zip | Auto-convert images on upload. AI alt text. |
| 🖼️ Embed Widget | embed-widget.zip | Embeddable conversion widget for any website. |
- Download
chrome-extension.zipand extract - Open Chrome →
chrome://extensions→ Enable "Developer mode" - Click "Load unpacked" → Select the extracted folder
- Right-click any image to optimize
# Extract and install
unzip cli.zip && cd cli
npm install -g .
# Convert images
bulkpicconv convert photo.jpg --format webp --quality 80unzip sdk-node.zip && cd sdk-node
npm installimport { BulkPicConv } from './index.js'
const client = new BulkPicConv({ apiKey: 'sk_...' })
await client.convertFile('photo.jpg', 'photo.webp', { quality: 80 })unzip sdk-python.zip && cd sdk-python
pip install .from bulkpicconv import BulkPicConv
client = BulkPicConv("sk_...")
client.convert_file("photo.jpg", "photo.webp", {"quality": 80})unzip sdk-php.zip
composer require bulkpicconv/php-sdk$client = new BulkPicConv\Client('sk_...');
$client->convertFile('photo.jpg', 'photo.webp', ['quality' => 80]);- Download
wordpress-plugin.zip - WordPress Admin → Plugins → Add New → Upload Plugin
- Activate and configure in Settings → BulkPicConv
<script src="https://www.bulkpicconv.com/sdk/bic-embed.js"></script>
<div id="bic-embed"></div>
<script>
BulkImageConverter.embed('#bic-embed', { apiKey: 'sk_...' })
</script>- Download
zapier.zip - Follow Zapier CLI app setup guide
- Or use the provided
index.jsas a reference integration
All tools share the same API key. Get yours at API Pricing.
- Free tier: 50 conversions/month, no credit card required
- Pro: Starts at $9.99/mo with higher limits and AI tools
MIT