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.
擴展基本資訊
名稱 | GitHub Code-blocks to TypeScript Playground |
ID | ghfbedglkdlaefbpdammobffadckmjaa |
官方網址 | 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\/*" ] } |