Catppuccin for GitHub File Explorer Icons

Soothing pastel icons for GitHub File Explorer
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Catppuccin for GitHub File Explorer Icons",
  "description": "Soothing pastel icons for GitHub File Explorer",
  "version": "0.12.0",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab",
    "scripting"
  ],
  "optional_host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Catppuccin for GitHub File Explorer Icons",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://codeberg.org/*",
        "*://github.com/*",
        "*://gitlab.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "content-scripts/content.js"
      ]
    }
  ]
}