Fuuz Browser Extension
Allows users to easily integrate any website with Fuuz.
ما هو Fuuz Browser Extension؟
Fuuz Browser Extension هو إضافة Chrome تم تطويرها بواسطة MFGx Engineering، والميزة الرئيسية لها هي "Allows users to easily integrate any website with Fuuz.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Fuuz Browser Extension
قم بتنزيل ملفات الامتداد Fuuz Browser Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Simply sign into your Fuuz account and activate Fuuz on any website. You will then be able to slide out Fuuz and start adding action buttons. You can use any information from the web page you are currently on as parameters to these action buttons, including querystring parameters, text fields, checkboxes, or any other input on the screen. Action buttons are able to trigger Fuuz webhooks and data flows, render documents, navigate to related web pages, or even render Fuuz screens and visualizations right on the current web page!
معلومات أساسية عن التمديد
الاسم | Fuuz Browser Extension |
ID | kcamgdjiikgoglpfomjikmdonhfaplod |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/fuuz-browser-extension/kcamgdjiikgoglpfomjikmdonhfaplod |
الوصف | Allows users to easily integrate any website with Fuuz. |
حجم الملف | 30.86 MB |
عدد التثبيتات | 1,621 |
النسخة الحالية | 2024.1.1 |
آخر تحديث | 2024-01-17 |
تاريخ النشر | 2020-06-30 |
تقييم | 4.67/5 مجموع تقييمات 3 |
المطور | MFGx Engineering |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة سياسة الخصوصية | https://fuuz.com/privacy-policy |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "2024.1.1", "name": "__MSG_appName__", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "128": "images\/favicon.png" }, "default_locale": "en", "background": { "persistent": false, "scripts": [ "js\/background\/background.js" ] }, "storage": { "managed_schema": "schema.json" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs", "storage", "alarms" ], "browser_action": { "default_icon": { "32": "images\/favicon.png" }, "default_title": "Fuuz Browser Extension", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content\/index.js" ] } ], "web_accessible_resources": [ "images\/fuuz_logo-tag-rev-2col.svg", "images\/fuuz_logo-tag.svg" ] } |