Elemental

Bringing a better developer experience to Bubble

Elemental क्या है?

Elemental Elemental द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Bringing a better developer experience to Bubble"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Elemental एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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;                    

एक्सटेंशन की मूल जानकारी

नाम Elemental Elemental
ID dlgflcilldefileenipicfeijpnkekii
आधिकारिक URL https://chromewebstore.google.com/detail/elemental/dlgflcilldefileenipicfeijpnkekii
विवरण Bringing a better developer experience to Bubble
फ़ाइल का आकार 32.88 KB
स्थापना संख्या 41
वर्तमान संस्करण 0.0.11
अंतिम अपडेट 2023-12-12
प्रकाशन तिथि 2023-10-06
डेवलपर Elemental
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://tryelemental.io
गोपनीयता नीति पृष्ठ URL https://tryelemental.io/privacy
समर्थित भाषाएँ 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"
        }
    }
}