GitHub Code-blocks to TypeScript Playground
When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock
Qu'est-ce que GitHub Code-blocks to TypeScript Playground ?
GitHub Code-blocks to TypeScript Playground est une extension Chrome développée par orta.therox, et sa fonction principale est "When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GitHub Code-blocks to TypeScript Playground
Téléchargez les fichiers d'extension GitHub Code-blocks to TypeScript Playground au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | GitHub Code-blocks to TypeScript Playground |
ID | ghfbedglkdlaefbpdammobffadckmjaa |
URL Officiel | 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 |
Taille du Fichier | 8.91 KB |
Nombre d'Installations | 36 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2019-06-19 |
Date de Publication | 2019-06-19 |
Développeur | orta.therox |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/orta/ts-playgrounds-github |
URL de la Page d'Aide | https://github.com/orta/ts-playgrounds-github |
Langues Prises en Charge | 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\/*" ] } |