GitHub Code-blocks to TypeScript Playground

GitHub Code-blocks to TypeScript Playground

When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GitHub Code-blocks to TypeScript Playground",
  "description": "When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock",
  "version": "0.1",
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "js/add-ts-playground-links.js"
      ]
    }
  ],
  "permissions": [
    "https://github.com/*"
  ]
}