GitHub Code-blocks to TypeScript Playground
When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock
What is GitHub Code-blocks to TypeScript Playground?
GitHub Code-blocks to TypeScript Playground is a Chrome extension developed by orta.therox, and its main feature is "When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock".
Extension Screenshots
Download GitHub Code-blocks to TypeScript Playground Extension CRX File
Download GitHub Code-blocks to TypeScript Playground extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension adds links to the TypeScript playground throughout GitHub. It's very minimal on work it does, so it won't slow down your browsing.
Extension Basic Information
Name | GitHub Code-blocks to TypeScript Playground |
ID | ghfbedglkdlaefbpdammobffadckmjaa |
Official URL | https://chromewebstore.google.com/detail/github-code-blocks-to-typ/ghfbedglkdlaefbpdammobffadckmjaa |
Description | When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock |
File Size | 8.91 KB |
Installation Count | 36 |
Current Version | 0.1 |
Last Updated | 2019-06-19 |
Publish Date | 2019-06-19 |
Developer | orta.therox |
Payment Type | free |
Extension Website | https://github.com/orta/ts-playgrounds-github |
Help Page URL | https://github.com/orta/ts-playgrounds-github |
Supported Languages | en-GB |
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\/*" ] } |