GitHub Code-blocks to TypeScript Playground
When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock
ما هو GitHub Code-blocks to TypeScript Playground؟
GitHub Code-blocks to TypeScript Playground هو إضافة Chrome تم تطويرها بواسطة orta.therox، والميزة الرئيسية لها هي "When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة GitHub Code-blocks to TypeScript Playground
قم بتنزيل ملفات الامتداد GitHub Code-blocks to TypeScript Playground بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | GitHub Code-blocks to TypeScript Playground |
ID | ghfbedglkdlaefbpdammobffadckmjaa |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/github-code-blocks-to-typ/ghfbedglkdlaefbpdammobffadckmjaa |
الوصف | When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock |
حجم الملف | 8.91 KB |
عدد التثبيتات | 36 |
النسخة الحالية | 0.1 |
آخر تحديث | 2019-06-19 |
تاريخ النشر | 2019-06-19 |
المطور | orta.therox |
نوع الدفع | free |
موقع الإضافة | https://github.com/orta/ts-playgrounds-github |
عنوان صفحة المساعدة | https://github.com/orta/ts-playgrounds-github |
اللغات المدعومة | 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\/*" ] } |