GrowthBook DevTools

GrowthBook's Visual Editor and SDK Debugger

GrowthBook DevToolsคืออะไร?

GrowthBook DevTools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://growthbook.io และคุณลักษณะหลักของมันคือ "GrowthBook's Visual Editor and SDK Debugger"

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

screenshot
screenshot
screenshot

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

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

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

                        Features
- Use the new GrowthBook Visual Editor to design A/B tests without writing code
- View all features and experiments used on the current page
- Override assigned values to test all the different variations
- Override targeting attributes to simulate what different users will see
- Detailed logs explaining exactly why you got assigned a specific value

Requirements
- Install the GrowthBook Javascript or React SDK to your site (https://docs.growthbook.io/lib)

Learn more about GrowthBook, the open source A/B testing and feature flagging platform - https://github.com/growthbook/growthbook


CHANGELOG
*0.3.6* (2024-02-28)
- Updates & bug fixes

*0.3.4* (2023-11-21)
- Bug fixes

*0.3.3* (2023-11-13)
- Improved drag and drop
- SDK warnings and detection
- DebugPanel
- General UI improvements and bug fixes

*0.3.2* (2023-08-28)
  - Update dependencies

*0.3.1* (2023-08-15)
  - Security fixes and performance improvements
  - Visual editor - OpenAI copy suggestions (beta)

*0.3.0* (2023-06-06)
  - Visual editor - ability to inject custom javascript as part of a test
  - Visual editor - modify inline CSS properties
  - Various bug fixes for visual editor

*0.2.2* (2023-05-03)
  - Visual editor - ability to re-arrange elements on the page and undo button for innerHTML changes
  - Various bug fixes for visual editor

*0.2.1* (2023-04-03)
  - Bug fixes for visual editor
  - Only include visual editor script on pages with the `vc-id` querystring parameter (fixes conflicts on some websites)

*0.2.0* (2023-03-28)
  - Integrate the new Visual Editor
  - Switch to a custom webpack build process instead of Create React App

*0.1.3* (2022-10-17)
  - Improve error message when GrowthBook SDK is not detected

*0.1.2* (2022-06-08)
  - Fix bug: forcing experiment variations in devtools was not updating feature values correctly in the UI

*0.1.1*  (2022-01-22)
   - Support for context.overrides
   - UI improvements for boolean feature flags
   - Auto-sync devtools when page's GrowthBook instance changes
   - Visually show variation weights in an experiment

*0.1.0*  (2022-01-05)
    - Initial release                    

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

ชื่อ GrowthBook DevTools GrowthBook DevTools
ID opemhndcehfgipokneipaafbglcecjia
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/growthbook-devtools/opemhndcehfgipokneipaafbglcecjia
คำอธิบาย GrowthBook's Visual Editor and SDK Debugger
ขนาดไฟล์ 678 KB
จำนวนการติดตั้ง 4,549
เวอร์ชันปัจจุบัน 0.3.6
อัปเดตครั้งล่าสุด 2024-02-29
วันที่เผยแพร่ 2022-01-06
คะแนน 4.20/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา https://growthbook.io
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.growthbook.io
URL หน้าช่วยเหลือ https://www.growthbook.io/contact
URL หน้านโยบายความเป็นส่วนตัว https://www.growthbook.io/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GrowthBook DevTools",
    "description": "GrowthBook's Visual Editor and SDK Debugger",
    "version": "0.3.6",
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "js\/devtools_embed_script.js",
                "js\/visual_editor.js",
                "js\/logo192.png",
                "js\/create-api-key.png",
                "options.html"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "icons": {
        "16": "logo192.png",
        "48": "logo192.png",
        "128": "logo192.png"
    },
    "devtools_page": "devtools.html"
}