Bubble Option Sets Helper
CSV upload for Option Sets to Bubble app
什麼是Bubble Option Sets Helper?
Bubble Option Sets Helper是由arturio開發的Chrome擴展程式,該擴展的主要功能是“CSV upload for Option Sets to Bubble app”。
擴展截圖
下載Bubble Option Sets Helper擴展crx文件
下載Bubble Option Sets Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension helps Bubble creators in managing Option Sets. The first version of extension give the ability to import Options from selected CSV file.
擴展基本資訊
名稱 | Bubble Option Sets Helper |
ID | laeccjomidijmdhgojimnjdlbkflbkpm |
官方網址 | https://chromewebstore.google.com/detail/bubble-option-sets-helper/laeccjomidijmdhgojimnjdlbkflbkpm |
簡介 | CSV upload for Option Sets to Bubble app |
檔案大小 | 38.34 KB |
安裝次數 | 632 |
目前版本 | 1.0.4 |
更新時間 | 2024-02-10 |
上架時間 | 2021-10-22 |
評分 | 4.73/5 共 11 次評分 |
開發者 | arturio |
電子郵箱 | [email protected] |
付費類型 | free |
說明頁面URL | https://forum.bubble.io/t/new-extension-bulk-import-from-csv-file-for-option-set/175058 |
支援的語言 | 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" } } |