Canvas by AirDev
Easily add beautiful pages and blocks to your Canvas app.
Hvad er Canvas by AirDev?
Canvas by AirDev er en Chrome-udvidelse udviklet af https://build.airdev.co, og dens hovedfunktion er "Easily add beautiful pages and blocks to your Canvas app.".
Udvidelsesskærmbilleder
Download Canvas by AirDev-udvidelses-CRX-fil
Download Canvas by AirDev-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
The fastest way to design and build Bubble apps Canvas is a no-code framework built on top of Bubble that makes creating beautiful responsive web applications easy and fast. With our comprehensive Canvas building framework, you can accelerate your build by focusing on what is truly unique about your app. Our chrome extension allows you to easily import pages, blocks, and elements from our growing library of 200+ Canvas assets. *Compatible with Bubble apps using the Canvas Base Template (https://bubble.io/template/canvas-building-framework-1541110863579x114287102114398200)
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | apmembkcpmjhmecifhckdidppfoiajie |
Officiel URL | https://chromewebstore.google.com/detail/canvas-by-airdev/apmembkcpmjhmecifhckdidppfoiajie |
Beskrivelse | Easily add beautiful pages and blocks to your Canvas app. |
Filstørrelse | 37.79 KB |
Antal Installationer | 9,281 |
Nuværende Version | 2.4.6 |
Senest Opdateret | 2024-03-01 |
Udgivelsesdato | 2020-10-01 |
Bedømmelse | 4.00/5 Samlet 8 Bedømmelser |
Udvikler | https://build.airdev.co |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://build.airdev.co/canvas |
Hjælpeside-URL | https://build.airdev.co/support |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Canvas by AirDev", "version": "2.4.6", "description": "Easily add beautiful pages and blocks to your Canvas app.", "permissions": [ "tabs", "scripting", "activeTab" ], "host_permissions": [ "https:\/\/airdevco.s3.us-west-1.amazonaws.com\/", "https:\/\/bubble.io\/*" ], "action": { "default_title": "Click to open Canvas", "default_icon": { "16": "assets\/images\/16x16_logo.png" } }, "content_scripts": [ { "matches": [ "https:\/\/bubble.io\/*", "https:\/\/*.bubble.is\/*" ], "js": [ "import-index.js" ], "run_at": "document_end" } ], "background": { "service_worker": "core-ts\/serviceWorker.js", "type": "module" }, "icons": { "16": "assets\/images\/16x16_logo.png", "48": "assets\/images\/48x48_logo.png", "128": "assets\/images\/128x128_logo.png" }, "web_accessible_resources": [ { "resources": [ "chunks\/*-*.js", "index.js" ], "matches": [ "https:\/\/bubble.io\/*", "https:\/\/*.bubble.is\/*", "https:\/\/airdevco.s3.us-west-1.amazonaws.com\/*" ] } ] } |