GitLab Poop 💩

GitLab Poop 💩

Gives a brand new restyle to the GitLab logo!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GitLab Poop 💩",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Gives a brand new restyle to the GitLab logo!",
  "permissions": [
    "tabs",
    "*://*.gitlab.com/*"
  ],
  "icons": {
    "128": "poop-emoji.png"
  },
  "web_accessible_resources": [
    "poop-emoji.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.gitlab.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "gitlab-poop.js"
      ]
    }
  ]
}