Auto Dark Theme for Feedly

Auto Dark Theme for Feedly

Make Feedly automatically match your system's dark/light theme.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Auto Dark Theme for Feedly",
  "version": "1.1",
  "description": "Make Feedly automatically match your system's dark/light theme.",
  "icons": {
    "16": "images/icon_16.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "96": "images/icon_96.png",
    "128": "images/icon_128.png",
    "256": "images/icon_256.png"
  },
  "permissions": [
    "*://feedly.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://feedly.com/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ]
}