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
公式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
Eメール [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
}