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是由https://lukasvermeer.nl開發的Chrome擴展程式,該擴展的主要功能是“Automatically performs Sample Ratio Mismatch (SRM) test and flags potential issues on supported experimentation platforms.”。

擴展截圖

screenshot

下載Sample Ratio Mismatch (SRM) Checker擴展crx文件

下載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 Sample Ratio Mismatch (SRM) Checker
ID ikielffdbameifemkibfheolelbohipn
官方網址 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
}