GitHub EditorConfig

GitHub EditorConfig

EditorConfig support for GitHub

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "includes/content.js"
      ]
    }
  ],
  "name": "GitHub EditorConfig",
  "icons": {
    "16": "icons/button.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "web_accessible_resources": [
    "res/*",
    "assets/*",
    "icons/*"
  ],
  "description": "EditorConfig support for GitHub",
  "background": {
    "page": "background.html"
  },
  "homepage_url": "https://github.com/RReverser/github-editorconfig",
  "version": "1.1.0",
  "options_page": "options.html",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "tabs",
    "contextMenus",
    "webNavigation",
    "https://raw.githubusercontent.com/*"
  ]
}