Material Icons for Github

Material Icons for Github

Replace the file/folder icons on github file browsers 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


{
  "name": "Material Icons for GitHub",
  "version": "1.8.14",
  "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"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{eac6e624-97fa-4f28-9d24-c06c9b8aa713}"
    }
  },
  "manifest_version": 2,
  "web_accessible_resources": [
    "*.svg"
  ],
  "browser_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"
    }
  }
}