Dark Mode for Google Podcast

Dark Mode for Google Podcast

Dark mode for Google Podcast. Replacing white background to black and slightly set text a little more white. Also show the whole…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Dark Mode for Google Podcast",
  "short_name": "Dark Mode for Google Podcast",
  "version": "2.0",
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://podcasts.google.com/*",
        "http://podcasts.google.com/*"
      ],
      "js": [
        "jquery-3.5.0.js",
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "image16.png",
    "48": "image48.png",
    "128": "image128.png"
  },
  "browser_action": {
    "default_icon": "icon.png"
  }
}