Examine source code of TestCase Studio Pro

Inspect and view changes in TestCase Studio Pro 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
{
  "manifest_version": 3,
  "name": "TestCase Studio Pro",
  "description": "__MSG_extDescription__",
  "author": "Sanjay Kumar",
  "homepage_url": "https://selectorshub.com/testcase-studio/",
  "default_locale": "en",
  "version": "2.3.9",
  "icons": {
    "48": "logo-48.png",
    "96": "logo-96.png",
    "128": "logo-128.png"
  },
  "action": {
    "default_title": "__MSG_extDefaultTitle__"
  },
  "background": {
    "service_worker": "extension/background.js"
  },
  "permissions": [
    "contextMenus",
    "notifications",
    "storage",
    "tabs",
    "cookies"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content-script/contentScript.css"
      ],
      "js": [
        "content-script/browser-polyfill.min.js",
        "content-script/injectedScript.js",
        "content-script/consoleApi.js",
        "content-script/contentScript.js",
        "content-script/record-script.js",
        "content-script/web-page.js"
      ],
      "match_about_blank": true
    }
  ],
  "offline_enabled": true,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}