Atomic Fusion

Bubble developer extension to help you build and design apps faster.

Atomic Fusion là gì?

Atomic Fusion là một tiện ích mở rộng Chrome được phát triển bởi https://atomicfusion.io, và tính năng chính của nó là "Bubble developer extension to help you build and design apps faster.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Atomic Fusion

Tải xuống các tệp mở rộng Atomic Fusion dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension lets Bubble.io Visual Developers access UI design kits, assets, components, code snippets, styles and more - all from within their Bubble.io editor.  

You can copy pre-built elements and styles developed in Bubble from the Atomic Fusion library and paste them right into your Bubble.io editor as well as upload from the Bubble.io App Editor into your Atomic Fusion Library repository to speed up design and Bubble app building processes.

If the user is a Bubble.io Developer they should install this to help them speed up building and designing Bubble apps.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Atomic Fusion Atomic Fusion
ID jibgindchlbfjhhhnlkplcibdmkdnkji
URL Chính Thức https://chromewebstore.google.com/detail/atomic-fusion/jibgindchlbfjhhhnlkplcibdmkdnkji
Mô tả Bubble developer extension to help you build and design apps faster.
Kích Thước Tệp 81.46 KB
Số Lần Cài Đặt 3,417
Phiên Bản Hiện Tại 0.0.0.24
Cập Nhật Lần Cuối 2024-01-26
Ngày Phát Hành 2022-01-18
Đánh Giá 3.94/5 Tổng số 17 Đánh Giá
Nhà Phát Triển https://atomicfusion.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://atomicfusion.io
URL Trang Trợ Giúp https://atomicfusion.io
URL Trang Chính Sách Bảo Mật https://getterms.io/view/4bi4Z/privacy/en-us
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Atomic Fusion",
    "version": "0.0.0.24",
    "description": "Bubble developer extension to help you build and design apps faster.",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "action": {
        "default_title": "Atomic Fusion",
        "default_icon": "icons\/icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.bubble.io\/*",
                "*:\/\/*.bubble.is\/*"
            ],
            "js": [
                "scripts\/bubble.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.atomicfusion.io\/*"
            ],
            "js": [
                "scripts\/atomicFusion.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/close.png",
                "icons\/icon32.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline' https:\/\/atomicfusion.io;"
    }
}