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 } |