Batoto Night Mode

Batoto Night Mode

An extension that makes it easier to read manga at night.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Batoto Night Mode",
  "description": "An extension that makes it easier to read manga at night.",
  "version": "1.0.0",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "css": [
        "batotonight.css"
      ],
      "matches": [
        "http://bato.to/reader*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "http://bato.to/*",
    "tabs"
  ],
  "web_accessible_resources": [
    "batotonight.css"
  ]
}