Examine source code of github-material-icon-theme

Inspect and view changes in github-material-icon-theme 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": 2,
  "name": "github-material-icon-theme",
  "version": "6.0.3",
  "description": "vscode-material-icon-theme for GitHub",
  "icons": {
    "16": "./logo.png",
    "48": "./logo.png",
    "128": "./logo.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "browser-polyfill.js",
        "content.js"
      ],
      "css": [
        "inject.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "browser-polyfill.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "./logo.png",
    "default_popup": "popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "github@materialicontheme.com",
      "strict_min_version": "58.0"
    }
  }
}