Splunk Search Assistant

This extension enables the Ctrl+/ keyboard shortcut to toggle comments on and off in addition to other features.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Splunk Search Assistant",
  "version": "1.3.60",
  "description": "This extension enables the Ctrl+/ keyboard shortcut to toggle comments on and off in addition to other features.",
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "settings.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/injected_code.js",
        "scripts/command_reference.json",
        "scripts/splunk_doclinks.json",
        "styles.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}