GitHub Code-blocks to TypeScript Playground
When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock
Vad är GitHub Code-blocks to TypeScript Playground?
GitHub Code-blocks to TypeScript Playground är en Chrome-tillägg utvecklad av orta.therox, och dess huvudfunktion är "When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock".
Tilläggsskärmbilder
Ladda ner GitHub Code-blocks to TypeScript Playground-förlängningens CRX-fil
Ladda ner GitHub Code-blocks to TypeScript Playground-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | GitHub Code-blocks to TypeScript Playground |
ID | ghfbedglkdlaefbpdammobffadckmjaa |
Officiell webbadress | https://chromewebstore.google.com/detail/github-code-blocks-to-typ/ghfbedglkdlaefbpdammobffadckmjaa |
Beskrivning | When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock |
Filstorlek | 8.91 KB |
Antal Installationer | 36 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2019-06-19 |
Publiceringsdatum | 2019-06-19 |
Utvecklare | orta.therox |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/orta/ts-playgrounds-github |
Hjälpsida URL | https://github.com/orta/ts-playgrounds-github |
Stödda Språk | 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\/*" ] } |