Night mode Instagram

Night mode Instagram

The dark theme protects the eyes, changing the Instagram theme to black. For those who do not like the white theme Instagram.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_name__",
  "short_name": "__MSG_short_name__",
  "manifest_version": 2,
  "version": "0.0.27",
  "description": "__MSG_description__",
  "default_locale": "en",
  "browser_action": {
    "default_icon": "img/enable.png",
    "default_title": "__MSG_short_name__"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "permissions": [
    "tabs",
    "activeTab",
    "<all_urls>"
  ],
  "icons": {
    "48": "img/enable.png"
  }
}