Typescript Logging Developer Extension

Typescript Logging Developer Extension

This developer tool extension can be used when your web application uses typescript-logging.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Typescript Logging Developer Extension",
  "description": "This developer tool extension can be used when your web application uses typescript-logging.",
  "version": "0.3.0",
  "devtools_page": "devtools.html",
  "permissions": [
    "<all_urls>",
    "storage",
    "webNavigation"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "icons": {
    "128": "images/icon.png"
  },
  "short_name": "TSL Developer Extension"
}