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 là gì?

GitHub Code-blocks to TypeScript Playground là một tiện ích mở rộng Chrome được phát triển bởi orta.therox, và tính năng chính của nó là "When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng GitHub Code-blocks to TypeScript Playground

Tải xuống các tệp mở rộng GitHub Code-blocks to TypeScript Playground dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GitHub Code-blocks to TypeScript Playground GitHub Code-blocks to TypeScript Playground
ID ghfbedglkdlaefbpdammobffadckmjaa
URL Chính Thức https://chromewebstore.google.com/detail/github-code-blocks-to-typ/ghfbedglkdlaefbpdammobffadckmjaa
Mô tả When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock
Kích Thước Tệp 8.91 KB
Số Lần Cài Đặt 36
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2019-06-19
Ngày Phát Hành 2019-06-19
Nhà Phát Triển orta.therox
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/orta/ts-playgrounds-github
URL Trang Trợ Giúp https://github.com/orta/ts-playgrounds-github
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}