Minimal Behance

Minimal Behance

Low contrast changes to Behance UI to achieve more focus in the project view.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Minimal Behance",
  "version": "2.2",
  "host_permissions": [
    "https://www.behance.net/*"
  ],
  "description": "Low contrast changes to Behance UI to achieve more focus in the project view.",
  "icons": {
    "48": "icons/48.png",
    "96": "icons/96.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.behance.net/*"
      ],
      "css": [
        "minimal-behance.css"
      ]
    },
    {
      "matches": [
        "*://www.behance.net/gallery*"
      ],
      "css": [
        "minimal-behance-gallery.css"
      ],
      "exclude_matches": [
        "*://www.behance.net/"
      ]
    }
  ]
}