Stack Trace Linkifier

Stack Trace Linkifier

Turn stack frames in JavaScript stack traces into links to the source.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Stack Trace Linkifier",
  "description": "Turn stack frames in JavaScript stack traces into links to the source.",
  "version": "0.1.0",
  "permissions": [
    "tabs",
    "<all_urls>",
    "webNavigation"
  ],
  "minimum_chrome_version": "10.0",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "32": "./icons/icon32.png"
    }
  },
  "icons": {
    "16": "./icons/icon16.png",
    "48": "./icons/icon48.png",
    "128": "./icons/icon128.png"
  },
  "devtools_page": "devtools.html"
}