Inspect and view changes in Canva Bulk Maker source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Canva Bulk Maker",
"description": "Save time and produce efficiently with this tool! Batch create and download designs with automated variable processing on Canva.com",
"version": "1.1.9",
"manifest_version": 3,
"icons": {
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},
"action": {
"default_title": "Canva Bulk Maker",
"default_popup": "popup/popup.html"
},
"content_scripts": [
{
"matches": [
"https://www.canva.com/*"
],
"js": [
"content.js"
],
"css": [
"cont.css",
"spectre.min.css"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"https://automatism.works/",
"https://*.canva.com/*"
],
"web_accessible_resources": [
{
"resources": [
"inject.js"
],
"matches": [
"*://*.canva.com/*"
]
}
],
"permissions": [
"storage",
"downloads",
"activeTab",
"scripting"
]
}