Examine source code of Guidejar

Inspect and view changes in Guidejar 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,
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnoW6sXUiqD9Ky4fX8asBWG6EZ5aF/UV34kBAja3H0ldiSZZt8pWwoWiVRsLqcQzSIX7iOYeLMHRDQ0DCL5zlF/9sfm4+FahuXdioAZzvxm0uwftzg9rsUi4ezrMiT0aHYPIrzW3POG4Eedu4N0wZfPZvyVf24VbIWKlmJpHt/nuiwIy1IpnFQ4qoENXZgIw7jaisH0zGWeDJJeQkbscVJYpcKCTd1qvAxAhv7Oj2Cc+33F/5gYkw6OU5ZkG7MSs0WBm89wlumlJF9PvgC8TD/JOAgDcpOKWK4UT5a+9hXJ+Zb9O2oTwXWlrnkmDUNxi8nD7ICyNoWO97rlFlHeCuCQIDAQAB",
  "name": "Guidejar",
  "version": "2.0.2",
  "description": "Simplify your product communication with AI-powered interactive demos and step-by-step guides.",
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "externally_connectable": {
    "matches": [
      "*://*.guidejar.com/*"
    ]
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Guidejar"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "global.css",
        "fonts.css",
        "icons/*",
        "images/*",
        "fonts/*",
        "html/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "commands": {
    "start-recording": {
      "suggested_key": {
        "default": "Alt+Shift+3",
        "mac": "Alt+Shift+3"
      },
      "description": "Start Recording"
    },
    "stop-recording": {
      "suggested_key": {
        "default": "Alt+Shift+4",
        "mac": "Alt+Shift+4"
      },
      "description": "Stop Recording"
    },
    "take-screenshot": {
      "suggested_key": {
        "default": "Alt+Shift+5",
        "mac": "Alt+Shift+5"
      },
      "description": "Take Screenshot"
    }
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle",
      "js": [
        "contentScript.js"
      ],
      "match_about_blank": true,
      "all_frames": true
    }
  ]
}