Knockoutjs context debugger

Knockoutjs context debugger

Shows the knockout context & data for the selected dom node in a sidebar of the elements pane.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "version": "2.6.8",
  "manifest_version": 3,
  "name": "Knockoutjs context debugger",
  "description": "Shows the knockout context & data for the selected dom node in a sidebar of the elements pane.",
  "options_ui": {
    "page": "src/options/index.html",
    "open_in_tab": true
  },
  "devtools_page": "src/devtool/devtool.html",
  "content_scripts": [
    {
      "js": [
        "assets/content-script-loader.index.ts.7c64ed84.6df94f50.js"
      ],
      "matches": [
        "https://*.facebook.com/*",
        "https://twitter.com/*",
        "https://*.linkedin.com/*"
      ]
    }
  ],
  "host_permissions": [
    "https://*.facebook.com/*",
    "https://twitter.com/*",
    "https://*.linkedin.com/*"
  ],
  "permissions": [
    "storage",
    "declarativeNetRequest"
  ],
  "icons": {
    "128": "icon_128.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "https://*.facebook.com/*",
        "https://*.linkedin.com/*",
        "https://twitter.com/*"
      ],
      "resources": [
        "assets/index.ts.7c64ed84.js"
      ],
      "use_dynamic_url": true
    }
  ]
}