ExplainDev: Explains code on your browser

ExplainDev: Explains code on your browser

The programmer's assistant of the future

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ExplainDev: Explains code on your browser",
  "version": "1.8.5",
  "icons": {
    "16": "assets/icons/icon-16.png",
    "32": "assets/icons/icon-32.png",
    "48": "assets/icons/icon-48.png",
    "128": "assets/icons/icon-128.png"
  },
  "description": "The programmer's assistant of the future",
  "homepage_url": "https://explain.dev/",
  "short_name": "Sample Name",
  "permissions": [
    "storage",
    "contextMenus",
    "https://api.explain.dev/*"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "author": "Kmdr LLC",
  "minimum_chrome_version": "49",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/icons/icon-16.png",
      "32": "assets/icons/icon-32.png",
      "48": "assets/icons/icon-48.png",
      "128": "assets/icons/icon-128.png"
    },
    "default_title": "ExplainDev explains the code in your browser",
    "chrome_style": false
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true,
    "chrome_style": false
  },
  "background": {
    "scripts": [
      "js/background.bundle.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "js/contentScript.bundle.js"
      ],
      "run_at": "document_end",
      "css": [
        "assets/css/tooltip.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "assets/images/*",
    "assets/css/*",
    "options.html",
    "login.html",
    "assets/icons/*"
  ]
}