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 là gì?
Sample Ratio Mismatch (SRM) Checker là một tiện ích mở rộng Chrome được phát triển bởi https://lukasvermeer.nl, và tính năng chính của nó là "Automatically performs Sample Ratio Mismatch (SRM) test and flags potential issues on supported experimentation platforms.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Sample Ratio Mismatch (SRM) Checker
Tải xuống các tệp mở rộng Sample Ratio Mismatch (SRM) Checker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Sample Ratio Mismatch (SRM) Checker |
ID | ikielffdbameifemkibfheolelbohipn |
URL Chính Thức | https://chromewebstore.google.com/detail/sample-ratio-mismatch-srm/ikielffdbameifemkibfheolelbohipn |
Mô tả | Automatically performs Sample Ratio Mismatch (SRM) test and flags potential issues on supported experimentation platforms. |
Kích Thước Tệp | 14.01 KB |
Số Lần Cài Đặt | 530 |
Phiên Bản Hiện Tại | 0.0.8 |
Cập Nhật Lần Cuối | 2023-06-03 |
Ngày Phát Hành | 2020-03-11 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | https://lukasvermeer.nl |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://lukasvermeer.nl/srm |
URL Trang Trợ Giúp | http://lukasvermeer.nl/srm/docs/faq/ |
URL Trang Chính Sách Bảo Mật | https://lukasvermeer.nl/srm/docs/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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 } |