GitHub Code-blocks to TypeScript Playground
When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock
Apa itu GitHub Code-blocks to TypeScript Playground?
GitHub Code-blocks to TypeScript Playground adalah ekstensi Chrome yang dikembangkan oleh orta.therox, dan fitur utamanya adalah "When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi GitHub Code-blocks to TypeScript Playground
Unduh file ekstensi GitHub Code-blocks to TypeScript Playground dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | GitHub Code-blocks to TypeScript Playground |
ID | ghfbedglkdlaefbpdammobffadckmjaa |
URL Resmi | https://chromewebstore.google.com/detail/github-code-blocks-to-typ/ghfbedglkdlaefbpdammobffadckmjaa |
Deskripsi | When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock |
Ukuran File | 8.91 KB |
Jumlah Instalasi | 36 |
Versi Saat Ini | 0.1 |
Terakhir Diperbarui | 2019-06-19 |
Tanggal Publikasi | 2019-06-19 |
Pengembang | orta.therox |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/orta/ts-playgrounds-github |
URL Halaman Bantuan | https://github.com/orta/ts-playgrounds-github |
Bahasa yang Didukung | 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\/*" ] } |