Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Gmail Bulk Print Selected: SAVE PDFs & ZIP & DOWNLOAD ATTACHMENTS",
"description": "Gmail Bulk print selected emails, save PDFs, download attachments, or export emails + attachments to a dated ZIP. 10-use trial.",
"version": "1.0.8",
"action": {
"default_title": "Gmail Bulk Print Selected",
"default_popup": "paywall.html"
},
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"background": {
"service_worker": "worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"content.js",
"content_pdf.js",
"content_attachments.js",
"content_zip.js"
],
"run_at": "document_idle"
}
],
"permissions": [
"activeTab",
"debugger",
"downloads",
"identity",
"notifications",
"storage",
"tabs"
],
"host_permissions": [
"https:\/\/gkdxedeyjaalwzpjbqpx.supabase.co\/*",
"https:\/\/buy.stripe.com\/*"
],
"web_accessible_resources": [
{
"resources": [
"paywall.html",
"success.html",
"icons\/16.png",
"icons\/32.png",
"icons\/48.png",
"icons\/128.png"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}