Material Icons for GitHub

Material Icons for GitHub

Replace the file/folder icons on the GitHub file browser with icons representing the file's type and which tool it is used by.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Material Icons for GitHub",
  "version": "1.8.12",
  "description": "Replace the file/folder icons on the GitHub file browser with icons representing the file's type and which tool it is used by.",
  "homepage_url": "https://github.com/Claudiohbsantos/github-material-icons-extension",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://github.com/*",
        "*://bitbucket.org/*",
        "*://dev.azure.com/*",
        "*://*.visualstudio.com/*",
        "*://gitea.com/*",
        "*://gitlab.com/*",
        "*://gitee.com/*",
        "*://sourceforge.net/*"
      ],
      "js": [
        "./main.js"
      ],
      "css": [
        "./injected-styles.css"
      ],
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "manifest_version": 3,
  "web_accessible_resources": [
    {
      "resources": [
        "*.svg"
      ],
      "matches": [
        "*://github.com/*",
        "*://bitbucket.org/*",
        "*://dev.azure.com/*",
        "*://*.visualstudio.com/*",
        "*://gitea.com/*",
        "*://gitlab.com/*",
        "*://gitee.com/*",
        "*://sourceforge.net/*"
      ]
    }
  ],
  "action": {
    "default_title": "Material Icons Settings",
    "default_popup": "settings-popup.html",
    "default_icon": {
      "16": "icon-16.png",
      "32": "icon-32.png",
      "48": "icon-48.png",
      "128": "icon-128.png"
    }
  }
}