Sample Ratio Mismatch (SRM) Checker
Automatically performs Sample Ratio Mismatch (SRM) test and flags potential issues on supported experimentation platforms.
Sample Ratio Mismatch (SRM) Checkerคืออะไร?
Sample Ratio Mismatch (SRM) Checker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://lukasvermeer.nl และคุณลักษณะหลักของมันคือ "Automatically performs Sample Ratio Mismatch (SRM) test and flags potential issues on supported experimentation platforms."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sample Ratio Mismatch (SRM) Checker
ดาวน์โหลดไฟล์ส่วนขยาย Sample Ratio Mismatch (SRM) Checker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The Sample Ratio Mismatch (SRM) test can be used to detect a wide variety of data quality issues that may affect online experiments (aka A/B tests). Only expected proportions and observed sample counts are required as input for this procedure, so this test can be used even in cases where experimenters only have access to summary statistics; such as when using third-party tools. This Chrome Extension automatically performs SRM checks and flags potential data quality issues on supported experimentation platforms. Supported platforms: - Convert.com - Google Optimize - Omniconvert - Optimizely - SiteGainer/Symplify - Visual Website Optimizer (VWO) - Zoho PageSense More information about SRM and this extension is available at https://lukasvermeer.nl/srm/. Sample Ratio Mismatch Checker was created by Lukas Vermeer, Heinrich Mahr and Georgi Georgiev.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Sample Ratio Mismatch (SRM) Checker |
ID | ikielffdbameifemkibfheolelbohipn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/sample-ratio-mismatch-srm/ikielffdbameifemkibfheolelbohipn |
คำอธิบาย | Automatically performs Sample Ratio Mismatch (SRM) test and flags potential issues on supported experimentation platforms. |
ขนาดไฟล์ | 14.01 KB |
จำนวนการติดตั้ง | 530 |
เวอร์ชันปัจจุบัน | 0.0.8 |
อัปเดตครั้งล่าสุด | 2023-06-03 |
วันที่เผยแพร่ | 2020-03-11 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://lukasvermeer.nl |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://lukasvermeer.nl/srm |
URL หน้าช่วยเหลือ | http://lukasvermeer.nl/srm/docs/faq/ |
URL หน้านโยบายความเป็นส่วนตัว | https://lukasvermeer.nl/srm/docs/privacy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sample Ratio Mismatch (SRM) Checker", "short_name": "SRM Check", "version": "0.0.8", "description": "Automatically performs Sample Ratio Mismatch (SRM) test and flags potential issues on supported experimentation platforms.", "permissions": [ "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/lukasvermeer.nl\/srm\/*", "https:\/\/optimize.google.com\/*", "https:\/\/app.optimizely.com\/*", "https:\/\/app.vwo.com\/*", "https:\/\/sitegainer.com\/*", "https:\/\/conversion.symplify.com\/*", "https:\/\/app.convert.com\/*", "https:\/\/web.omniconvert.com\/*", "https:\/\/pagesense.zoho.eu\/*", "https:\/\/pagesense.zoho.com\/*" ], "js": [ "lib\/statistics-distributions.js", "srm.js", "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "page_action": [], "icons": { "128": "icon128.png" }, "manifest_version": 2 } |