Night mode

Night mode

The dark theme for Instagram protects your eyes by changing colors to darker ones.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "short_name": "__MSG_short_name__",
  "manifest_version": 2,
  "version": "0.0.10",
  "description": "__MSG_description__",
  "default_locale": "en",
  "browser_action": {
    "default_icon": "img/enable.png",
    "default_title": "__MSG_short_name__"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "permissions": [
    "*://*.instagram.com/*"
  ],
  "icons": {
    "48": "img/enable.png"
  },
  "web_accessible_resources": [
    "/img/128x128.png"
  ]
}