Examine source code of testRigor’s Test Case Recorder

Inspect and view changes in testRigor’s Test Case Recorder 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": "testRigor’s Test Case Recorder",
  "description": "",
  "version": "1.18",
  "background": {
    "service_worker": "service-worker.js"
  },
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "webNavigation",
    "browsingData"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_icon": "icon1.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    },
    {
      "matches": [
        "https://app.testrigor.com/recorder-plugin/*"
      ],
      "js": [
        "frame-content.js"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "match_about_blank": true
    }
  ]
}