Examine source code of CEL Survey Study

Inspect and view changes in CEL Survey Study source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CEL Survey Study",
  "description": "CEL Survey Study is a study on X from Stanford University.",
  "version": "0.0.3",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://twitter.com/*",
        "*://x.com/*",
        "*://celsurveystudy.org/*"
      ],
      "run_at": "document_start",
      "js": [
        "config.js",
        "libs/jquery.min.js",
        "libs/client.js",
        "libs/timeme.min.js",
        "libs/utils.js",
        "events.js",
        "logic.js",
        "launcher.js"
      ],
      "css": [
        "static/shared.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "injected.js"
      ],
      "matches": [
        "*://twitter.com/*",
        "*://x.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "alarms"
  ]
}