Barebones Google Play Music UI

Barebones Google Play Music UI

This is a very basic Chrome extension which modifies CSS for Google Play Music, hiding some of the clutter on the Library page.…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Barebones Google Play Music UI",
  "short_name": "Bare Bones",
  "version": "0.2",
  "content_scripts": [
    {
      "matches": [
        "http://play.google.com/*",
        "https://play.google.com/*"
      ],
      "css": [
        "barebones.css"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ]
}