Sample Ratio Mismatch (SRM) Checker

Sample Ratio Mismatch (SRM) Checker

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

Merlin
Additional files are visible only to premium users

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
}