Elemental
Bringing a better developer experience to Bubble
什麼是Elemental?
Elemental是由Elemental開發的Chrome擴展程式,該擴展的主要功能是“Bringing a better developer experience to Bubble”。
擴展截圖
下載Elemental擴展crx文件
下載Elemental擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        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;                     擴展基本資訊
| 名稱 |   |  
| ID | dlgflcilldefileenipicfeijpnkekii | 
| 官方網址 | 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"
        }
    }
}  |  |