Atomic Fusion

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

Atomic Fusion란 무엇입니까?

Atomic Fusion은(는) https://atomicfusion.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bubble developer extension to help you build and design apps faster."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Atomic Fusion 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Atomic Fusion Atomic Fusion
ID jibgindchlbfjhhhnlkplcibdmkdnkji
공식 URL https://chromewebstore.google.com/detail/atomic-fusion/jibgindchlbfjhhhnlkplcibdmkdnkji
설명 Bubble developer extension to help you build and design apps faster.
파일 크기 81.46 KB
설치 횟수 3,417
현재 버전 0.0.0.24
최근 업데이트 2024-01-26
출시 날짜 2022-01-18
평점 3.94/5 총 17 개의 평점
개발자 https://atomicfusion.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://atomicfusion.io
도움말 페이지 URL https://atomicfusion.io
개인정보 보호 정책 페이지 URL https://getterms.io/view/4bi4Z/privacy/en-us
지원되는 언어 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;"
    }
}