Fuuz Browser Extension
Allows users to easily integrate any website with Fuuz.
什麼是Fuuz Browser Extension?
Fuuz Browser Extension是由MFGx Engineering開發的Chrome擴展程式,該擴展的主要功能是“Allows users to easily integrate any website with Fuuz.”。
擴展截圖
下載Fuuz Browser Extension擴展crx文件
下載Fuuz Browser Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" ] } |