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是由orta.therox开发的Chrome扩展程序,该扩展的主要功能是“When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock”。
扩展截图
下载GitHub Code-blocks to TypeScript Playground扩展crx文件
下载GitHub Code-blocks to TypeScript Playground扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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 |
| 帮助页面URL | 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\/*"
]
} | |