POP Logos

POP Logos

Change the brand logo and favicon on the web page to a pop image created by @SAWARATSUKI .

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "POP Logos",
  "description": "Change the brand logo and favicon on the web page to a pop image created by @SAWARATSUKI .",
  "version": "0.0.1",
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "96": "icon/96.png",
    "128": "icon/128.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "*://*.github.com/*",
        "*://*.gitlab.com/*"
      ],
      "resources": [
        "/logos/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.github.com/*"
      ],
      "js": [
        "content-scripts/github.js"
      ]
    },
    {
      "matches": [
        "*://*.gitlab.com/*"
      ],
      "js": [
        "content-scripts/gitlab.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}