Fuuz Browser Extension
Allows users to easily integrate any website with Fuuz.
Fuuz Browser Extension क्या है?
Fuuz Browser Extension MFGx Engineering द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows users to easily integrate any website with Fuuz."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Fuuz Browser Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
गोपनीयता नीति पृष्ठ URL | 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" ] } |