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 |
官方URL | 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" } } |