Inspect and view changes in Automate Canva 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",
"manifest_version": 3,
"name": "Automate Canva",
"version": "1.0.0",
"description": "Auto replace text and save the result as png",
"permissions": [
"activeTab",
"downloads"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Toolkit for Kittl",
"default_popup": "popup.html",
"default_icon": {
"16": "16.png",
"32": "32.png",
"48": "48.png",
"128": "128.png"
}
},
"content_scripts": [
{
"matches": [
"https://www.canva.com/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"16": "16.png",
"32": "32.png",
"48": "48.png",
"128": "128.png"
},
"web_accessible_resources": [
{
"matches": [
"https://www.canva.com/*"
],
"resources": [
"banner.png"
]
}
],
"content_security_policy": {
"script-src": [
"'self'",
"'unsafe-eval'"
],
"object-src": [
"'self'"
]
}
}