Inspect and view changes in Canva Free Elements Filter 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
{
"manifest_version": 3,
"name": "Canva Free Elements Filter",
"version": "1.2",
"description": "Hide Canva Pro elements and show only Free ones",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"96": "icons/icon96.png",
"128": "icons/icon128.png",
"256": "icons/icon256.png"
},
"permissions": [
"storage",
"scripting",
"tabs"
],
"host_permissions": [
"*://*.canva.com/*",
"https://api.gumroad.com/*"
],
"content_scripts": [
{
"matches": [
"*://*.canva.com/*"
],
"js": [
"config.js",
"stateManager.js",
"resetManager.js",
"licenseManager.js",
"modal.js",
"content.js"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"icons/*"
],
"matches": [
"*://*.canva.com/*"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}