Dark Octo Themes

Dark Octo Themes

Allows you to view source code on GitHub with a dark theme instead of the default light theme.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dark Octo Themes",
  "version": "1.17",
  "manifest_version": 2,
  "description": "Allows you to view source code on GitHub with a dark theme instead of the default light theme.",
  "icons": {
    "128": "src/images/icon.png"
  },
  "background": {
    "scripts": [
      "src/js/applyTheme.js",
      "src/js/themeStorage.js"
    ]
  },
  "permissions": [
    "activeTab",
    "https://gist.github.com/*",
    "https://github.com/*"
  ],
  "options_page": "src/options.html"
}