Kameleoon

Interact directly with the platform and use a powerful suite of easy-to-use debugging and troubleshooting tools.

Kameleoonคืออะไร?

Kameleoon เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kameleoon และคุณลักษณะหลักของมันคือ "Interact directly with the platform and use a powerful suite of easy-to-use debugging and troubleshooting tools."

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

screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Kameleoon ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        With the Kameleoon Chrome Extension, developers can now use, straight from their browser, a powerful set of debugging and troubleshooting tools.

Key features:

1.     Find out which experiments are currently active and running on the page and which variations you're bucketed into for each of them.

2.     See the exact size (in KB) of the script and the weight of each component.

3.     Easily QA and preview all metrics defined on Kameleoon, both in terms of goals and custom data.

4.     Decrypt all tracking calls happening on the page with a network requests analysis tool.

5.     Block tracking requests.

6.     Customize what is contained in results tables and the order of fields.

7.     Verify the consent management policy being applied.

To use, download the extension, open the console in Chrome, then head for the Kameleoon tab. You'll have access to a host of information to do your own QA and make sure that everything is working!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Kameleoon Kameleoon
ID nimncjjomfcjmfnghgaopccmdggjfoam
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/kameleoon/nimncjjomfcjmfnghgaopccmdggjfoam
คำอธิบาย Interact directly with the platform and use a powerful suite of easy-to-use debugging and troubleshooting tools.
ขนาดไฟล์ 4.55 MB
จำนวนการติดตั้ง 1,626
เวอร์ชันปัจจุบัน 3.14.0
อัปเดตครั้งล่าสุด 2024-03-04
วันที่เผยแพร่ 2020-09-07
คะแนน 5.00/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา Kameleoon
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.kameleoon.com/en
URL หน้าช่วยเหลือ https://help.kameleoon.com/en
URL หน้านโยบายความเป็นส่วนตัว https://www.kameleoon.com/en/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kameleoon",
    "version": "3.14.0",
    "description": "Interact directly with the platform and use a powerful suite of easy-to-use debugging and troubleshooting tools.",
    "minimum_chrome_version": "10.0",
    "devtools_page": "devtools.html",
    "manifest_version": 2,
    "content_security_policy": "script-src 'unsafe-eval' https:\/\/*.kameleoon.eu https:\/\/cdn.jsdelivr.net 'self' blob: filesystem:; object-src 'self'",
    "permissions": [
        "https:\/\/api.kameleoon.com\/",
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "popup.html",
        "index.html"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/socket.io.js",
                "js\/injector.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    }
}