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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } |