Sample Ratio Mismatch (SRM) Checker

Automatically performs Sample Ratio Mismatch (SRM) test and flags potential issues on supported experimentation platforms.

Qu'est-ce que Sample Ratio Mismatch (SRM) Checker ?

Sample Ratio Mismatch (SRM) Checker est une extension Chrome développée par https://lukasvermeer.nl, et sa fonction principale est "Automatically performs Sample Ratio Mismatch (SRM) test and flags potential issues on supported experimentation platforms.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Sample Ratio Mismatch (SRM) Checker

Téléchargez les fichiers d'extension Sample Ratio Mismatch (SRM) Checker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Sample Ratio Mismatch (SRM) Checker Sample Ratio Mismatch (SRM) Checker
ID ikielffdbameifemkibfheolelbohipn
URL Officiel https://chromewebstore.google.com/detail/sample-ratio-mismatch-srm/ikielffdbameifemkibfheolelbohipn
Description Automatically performs Sample Ratio Mismatch (SRM) test and flags potential issues on supported experimentation platforms.
Taille du Fichier 14.01 KB
Nombre d'Installations 530
Version Actuelle 0.0.8
Dernière Mise à Jour 2023-06-03
Date de Publication 2020-03-11
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://lukasvermeer.nl
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://lukasvermeer.nl/srm
URL de la Page d'Aide http://lukasvermeer.nl/srm/docs/faq/
URL de la Page de Politique de Confidentialité https://lukasvermeer.nl/srm/docs/privacy
Langues Prises en Charge 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
}