FPL Dark Mode

FPL Dark Mode

A simple 'Dark Mode' extension that also helps focus the chat and video of Floatplane's live pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FPL Dark Mode",
  "version": "0.32",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "css": [
        "video.css"
      ],
      "matches": [
        "http://www.floatplane.com/video",
        "https://www.floatplane.com/video"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "FPLDarkMode-192.png"
  },
  "icons": {
    "16": "FPLDarkMode-16.png",
    "48": "FPLDarkMode-48.png",
    "128": "FPLDarkMode-128.png"
  }
}