ZippyProject
A extension to copy and paste bubble elements.
ما هو ZippyProject؟
ZippyProject هو إضافة Chrome تم تطويرها بواسطة https://zippyproject.com، والميزة الرئيسية لها هي "A extension to copy and paste bubble elements.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة ZippyProject
قم بتنزيل ملفات الامتداد ZippyProject بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Reuse elements across many applications, in one click. Copy and paste reusable elements and build up your bubble.io application in a consistent way. From UI elements, workflows, datatypes and option sets - the most comprehensive tool for Bubble.io
معلومات أساسية عن التمديد
الاسم | ZippyProject |
ID | oooolokpngamkphleddbjcjfgdbbjkmo |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/zippyproject/oooolokpngamkphleddbjcjfgdbbjkmo |
الوصف | A extension to copy and paste bubble elements. |
حجم الملف | 223 KB |
عدد التثبيتات | 192 |
النسخة الحالية | 2.12.5 |
آخر تحديث | 2023-11-21 |
تاريخ النشر | 2022-02-06 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | https://zippyproject.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | in_app |
موقع الإضافة | https://zippyproject.com |
عنوان صفحة المساعدة | https://wegetdesign.com/support |
عنوان صفحة سياسة الخصوصية | https://wegetdesign.com/terms?legals=dataprotectionpolicy |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ZippyProject", "version": "2.12.5", "manifest_version": 3, "description": "A extension to copy and paste bubble elements.", "commands": { "copy-element": { "suggested_key": { "default": "Alt+X" }, "description": "It copies Bubble elements." }, "paste-element": { "suggested_key": { "default": "Alt+Q" }, "description": "It pastes Bubble elements." }, "clear-clipboard": { "suggested_key": { "default": "Alt+Y" }, "description": "It Clears Zippy's and Bubble's clipboards." } }, "background": { "service_worker": "bs-commands.js" }, "permissions": [ "clipboardRead", "clipboardWrite" ], "content_scripts": [ { "matches": [ "https:\/\/bubble.io\/page*" ], "js": [ "js\/cs-commands.js", "js\/cs-sidebar.js", "js\/cs-communications.js" ], "css": [ "css\/sidebar.css" ], "run_at": "document_idle" } ], "icons": { "16": "logos\/mini-logo.png", "48": "logos\/resized-logo.png" }, "web_accessible_resources": [ { "matches": [ "https:\/\/bubble.io\/*" ], "resources": [ "logos\/mini-logo-gray.png" ] } ] } |