SourceKit for Chrome

SourceKit for Chrome

A browser extension for GitHub, that enables Xcode features on your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SourceKit for Chrome",
  "version": "0.6.3",
  "description": "A browser extension for GitHub, that enables Xcode features on your browser.",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_popup": "popup/popup.html"
  },
  "author": "Kishikawa Katsumi",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.github.com/*"
      ],
      "run_at": "document_end",
      "css": [
        "css/index.css",
        "css/style.css",
        "css/tippyjs/tippy.css",
        "css/tippyjs/light-border.css",
        "css/highlightjs/xcode.css"
      ],
      "js": [
        "bundle.js"
      ]
    }
  ],
  "homepage_url": "https://github.com/kishikawakatsumi/SourceKitForSafari",
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": false
  },
  "permissions": [
    "activeTab",
    "nativeMessaging",
    "storage",
    "tabs",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "images/*.png"
  ]
}