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."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fuuz Browser Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
    ]
}