Insights by xs:code

Insights by xs:code

xs:code - Intuitive Open Source Analysis

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Insights by xs:code",
  "description": "xs:code - Intuitive Open Source Analysis",
  "version": "1.0.9",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "xs:code insights for Github repos",
    "default_icon": {
      "16": "icons/16x16-2.png",
      "48": "icons/48x48-2.png",
      "128": "icons/128x128-2.png",
      "265": "icons/icon_256.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "panel.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/16x16-1.png",
    "48": "icons/48x48-1.png",
    "128": "icons/128x128-1.png",
    "265": "icons/icon_256.png"
  },
  "permissions": [
    "geolocation",
    "declarativeContent",
    "activeTab",
    "tabs"
  ],
  "web_accessible_resources": [
    "index.html",
    "popup.html",
    "popup.css",
    "panel.js",
    "js/*",
    "fonts/*",
    "img/*"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+X",
        "mac": "MacCtrl+Shift+X"
      },
      "description": "Opens thexs:code insights side bar"
    }
  }
}