Examine source code of Unity GUID Resolver

Inspect and view changes in Unity GUID Resolver 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": "Unity GUID Resolver",
  "version": "1.1.0",
  "description": "Resolve GUIDs from a unity project to their asset names",
  "icons": {
    "16": "content/images/icon-16.png",
    "32": "content/images/icon-32.png",
    "48": "content/images/icon-48.png",
    "128": "content/images/icon-128.png"
  },
  "action": {
    "default_popup": "content/popup/popup.html"
  },
  "options_ui": {
    "page": "content/popup/popup.html",
    "open_in_tab": true
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "content/scripts/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "content/scripts/content.js"
      ],
      "css": [
        "content/styles/styles.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}