AB Tasty Debugger

Debug A/B tests from AB Tasty. Open source.

AB Tasty Debuggerคืออะไร?

AB Tasty Debugger เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Yoriiis และคุณลักษณะหลักของมันคือ "Debug A/B tests from AB Tasty. Open source."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Browser extension that simplifies the debugging of A/B tests from AB Tasty and adds useful informations.

Display A/B tests available on the current page and detail their informations such as variations and trackings and targetings. For example, if a test does not display, the extension displays the current variation and invalid targets.

Features:

- Dark mode compatible (user preference media feature).
- Displays a badge with the number of A / B tests found on the current page.
- Displays a list of all A/B tests available on the current page with their status.
- The list of A/B tests is sorted to show the accepted tests at the top of the list.
- Displays a clear AB Tasty cookies button to clear AB Tasty cookies and reload the page.
- Displays a debug mode button to activate AB Tasty logs in the DevTools console.
- Displays a detail view of each tests with their general informations (ID, status, type, targeting mode, async, traffic).
- Displays a link to see the test report.
- List all variations of the test if the status is `accepted` or `traffic_rejected`, with their name, traffic, a link of JSON modifications and activation button.
- List all trackings information of the test with their name and selector.
- List all targeting information of the test (segment, trigger, URL, code, selector, cookie, IP) with their status.
- Displays a link to edit the test targetings on the AB Tasty editor.
- The list of targeting is sorted to show the invalid targets at the top of the list.
- Collapse/expand all variations, trackings and targetings information.                    

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

ชื่อ AB Tasty Debugger AB Tasty Debugger
ID ideeaicjegejlmejdjbhbhfhenekneie
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ab-tasty-debugger/ideeaicjegejlmejdjbhbhfhenekneie
คำอธิบาย Debug A/B tests from AB Tasty. Open source.
ขนาดไฟล์ 38.3 KB
จำนวนการติดตั้ง 323
เวอร์ชันปัจจุบัน 1.3.2
อัปเดตครั้งล่าสุด 2023-05-27
วันที่เผยแพร่ 2021-03-14
ผู้พัฒนา Yoriiis
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/yoriiis/abtasty-debugger
URL หน้าช่วยเหลือ https://github.com/yoriiis/abtasty-debugger/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AB Tasty Debugger",
    "version": "1.3.2",
    "description": "Debug A\/B tests from AB Tasty. Open source.",
    "action": {
        "default_title": "AB Tasty Debugger",
        "default_popup": "popup.html",
        "default_icon": "images\/icon-32x32.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/content-script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "images\/icon-16x16.png",
        "48": "images\/icon-48x48.png",
        "128": "images\/icon-128x128.png"
    },
    "manifest_version": 3,
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "scripts\/page-script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}