Fuuz Browser Extension
Allows users to easily integrate any website with Fuuz.
Qu'est-ce que Fuuz Browser Extension ?
Fuuz Browser Extension est une extension Chrome développée par MFGx Engineering, et sa fonction principale est "Allows users to easily integrate any website with Fuuz.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Fuuz Browser Extension
Téléchargez les fichiers d'extension Fuuz Browser Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | Fuuz Browser Extension |
ID | kcamgdjiikgoglpfomjikmdonhfaplod |
URL Officiel | https://chromewebstore.google.com/detail/fuuz-browser-extension/kcamgdjiikgoglpfomjikmdonhfaplod |
Description | Allows users to easily integrate any website with Fuuz. |
Taille du Fichier | 30.86 MB |
Nombre d'Installations | 1,621 |
Version Actuelle | 2024.1.1 |
Dernière Mise à Jour | 2024-01-17 |
Date de Publication | 2020-06-30 |
Évaluation | 4.67/5 Total 3 Évaluations |
Développeur | MFGx Engineering |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://fuuz.com/privacy-policy |
Langues Prises en Charge | 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" ] } |