github-material-icon-theme

github-material-icon-theme

vscode-material-icon-theme for GitHub

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "github-material-icon-theme",
  "version": "5.0.0",
  "description": "vscode-material-icon-theme for GitHub",
  "icons": {
    "16": "./logo.png",
    "48": "./logo.png",
    "128": "./logo.png"
  },
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "index.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "action": {
    "default_icon": "./logo.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "style.css"
      ],
      "matches": [
        "https://github.com/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}