Bubble Option Sets Helper

CSV upload for Option Sets to Bubble app

Bubble Option Sets Helper là gì?

Bubble Option Sets Helper là một tiện ích mở rộng Chrome được phát triển bởi arturio, và tính năng chính của nó là "CSV upload for Option Sets to Bubble app".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bubble Option Sets Helper

Tải xuống các tệp mở rộng Bubble Option Sets Helper 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 helps Bubble creators in managing Option Sets.
The first version of extension give the ability to import Options from selected CSV file.                    

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

Tên Bubble Option Sets Helper Bubble Option Sets Helper
ID laeccjomidijmdhgojimnjdlbkflbkpm
URL Chính Thức https://chromewebstore.google.com/detail/bubble-option-sets-helper/laeccjomidijmdhgojimnjdlbkflbkpm
Mô tả CSV upload for Option Sets to Bubble app
Kích Thước Tệp 38.34 KB
Số Lần Cài Đặt 632
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2024-02-10
Ngày Phát Hành 2021-10-22
Đánh Giá 4.73/5 Tổng số 11 Đánh Giá
Nhà Phát Triển arturio
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://forum.bubble.io/t/new-extension-bulk-import-from-csv-file-for-option-set/175058
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bubble Option Sets Helper",
    "version": "1.0.4",
    "description": "CSV upload for Option Sets to Bubble app",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.bubble.io\/page*"
            ],
            "js": [
                "contentScript.js",
                "vendors\/papaparse.min.js"
            ],
            "css": [
                "css\/style.css",
                "css\/forms-min.css",
                "css\/buttons-min.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "inject.js"
            ],
            "matches": [
                "https:\/\/*.bubble.io\/*"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/*.bubble.io\/"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}