Elemental
Bringing a better developer experience to Bubble
¿Qué es Elemental?
Elemental es una extensión de Chrome desarrollada por Elemental, y su función principal es "Bringing a better developer experience to Bubble".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Elemental
Descarga archivos de extensión Elemental en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Highlights of Elemental: - Experience the bubble editor, now with dark mode support; - Fullscreen rich text & code editor with a new color scheme to improve code readability; - Keep track of tasks in your notes directly; - Notes with context: just like in Bubble, you’ll be able to navigate from a note to the element, reusable, page workflow, etc with a single click; - Searchable notes, with options to sort/filter, label/tag and even group notes; - Option to embed supported content (e.g: loom videos) into your notes;
Información Básica de la Extensión
Nombre | Elemental |
ID | dlgflcilldefileenipicfeijpnkekii |
URL Oficial | https://chromewebstore.google.com/detail/elemental/dlgflcilldefileenipicfeijpnkekii |
Descripción | Bringing a better developer experience to Bubble |
Tamaño del Archivo | 32.88 KB |
Cantidad de Instalaciones | 41 |
Versión Actual | 0.0.11 |
Última Actualización | 2023-12-12 |
Fecha de Publicación | 2023-10-06 |
Desarrollador | Elemental |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://tryelemental.io |
URL de la Página de Política de Privacidad | https://tryelemental.io/privacy |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Elemental", "description": "Bringing a better developer experience to Bubble", "version": "0.0.11", "manifest_version": 3, "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyClUm6RoFbRaebgiJUI2mQZ5QyLrokjX7Sw+J5cW2guhWh\/lWV1DyIHEHkk27P6X2O+dHw0RKJFu3zjehwOKsEWLrFHmlYMIdx9CvttQ9eS+LUfkz2Znz2BOA3SwRngIDO+fUYAsUEnR2YBZvVPvSwkkrGHO9deB6Qpe3XqU9K23demUMlI1hue8tyY43Dh2G1d0vRcAKS75HEq\/ECDlwBotX\/NlD80UJKh3DHUTVTi7V\/9NtuvEaJP2+AJIw33YpJ+xAAl6FQbIm0uFvC0pOYDxFlA0fZ75BdSd9Z2voUMvcUng6Mp0aQQcAU5yBKc1iGzJlLOTcGShh2rVN0eYjwIDAQAB", "icons": { "16": "images\/elemental_16.png", "32": "images\/elemental_32.png", "48": "images\/elemental_48.png", "128": "images\/elemental_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.bubble.io\/page*", "*:\/\/*.bubble.is\/page*", "*:\/\/*.bubble.com\/page*" ], "run_at": "document_end", "js": [ "contentScript.js" ], "css": [ "contentScript.css" ] }, { "matches": [ "*:\/\/*.bubble.io\/plugin_editor*" ], "js": [ "contentScript-plugin.js" ], "css": [ "contentScript-plugin.css" ] } ], "web_accessible_resources": [ { "resources": [ "bubble-ui.css", "bubble-plugin-ui.css" ], "matches": [ "*:\/\/*.bubble.io\/*", "*:\/\/*.bubble.is\/*", "*:\/\/*.bubble.com\/*" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "48": "images\/elemental_48.png" } } } |