Bubble Option Sets Helper

CSV upload for Option Sets to Bubble app

Co to jest Bubble Option Sets Helper?

Bubble Option Sets Helper to rozszerzenie Chrome opracowane przez arturio, a jego główną funkcją jest „CSV upload for Option Sets to Bubble app”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Bubble Option Sets Helper

Pobierz pliki rozszerzeń Bubble Option Sets Helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension helps Bubble creators in managing Option Sets.
The first version of extension give the ability to import Options from selected CSV file.                    

Podstawowe informacje o rozszerzeniu

Nazwa Bubble Option Sets Helper Bubble Option Sets Helper
ID laeccjomidijmdhgojimnjdlbkflbkpm
Oficjalny URL https://chromewebstore.google.com/detail/bubble-option-sets-helper/laeccjomidijmdhgojimnjdlbkflbkpm
Opis CSV upload for Option Sets to Bubble app
Rozmiar pliku 38.34 KB
Liczba instalacji 632
Aktualna Wersja 1.0.4
Ostatnia Aktualizacja 2024-02-10
Data Publikacji 2021-10-22
Ocena 4.73/5 Łącznie 11 Oceny
Deweloper arturio
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://forum.bubble.io/t/new-extension-bulk-import-from-csv-file-for-option-set/175058
Obsługiwane Języki 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"
    }
}