Examine source code of Recast Right Click Tools for Intune

Inspect and view changes in Recast Right Click Tools for Intune 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",
  "name": "Recast Right Click Tools for Intune",
  "description": "Right Click Tools extension for Intune",
  "manifest_version": 3,
  "version": "1.0.2.0",
  "action": {
    "default_popup": "Popup/Popup.html"
  },
  "options_page": "Settings/settings.html",
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://intune.microsoft.com/*",
        "file:///*"
      ],
      "js": [
        "content_script_IntuneBuildMenu.js",
        "content_script_IntuneDevicePage.js",
        "content_script_IntuneBuildMenuStyle.js"
      ]
    },
    {
      "matches": [
        "https://*/*",
        "http://*/*",
        "file:///*"
      ],
      "js": [
        "recast_logger.js",
        "content_script_UrlBuilder.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/th.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "data/menu.json"
      ]
    }
  ]
}