Source Code Reader

This extension adds an Browse button to the toolbar which allows you to browse the current GitHub repo using Source Code Reader.

Source Code Reader là gì?

Source Code Reader là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This extension adds an Browse button to the toolbar which allows you to browse the current GitHub repo using Source Code Reader.".

Ả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 Source Code Reader

Tải xuống các tệp mở rộng Source Code Reader 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

                        Source Code Reader is a web application which basically allows a user to open a publically hosted .NET C# project on Github and navigate through the code seamlessly. It allows a user to navigate directly to the implementation code from the calling code with single click (similar to the Go To Definition feature available in Microsoft Visual Studio).

Source code hosting providers like GitHub, Bitbucket, CodePlex and Google Code only provide provide basic file browsing capabilities. Source Code Reader does much more than files browsing; it understands the semantics of the code to give superior code navigation functionality.                    

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

Tên Source Code Reader Source Code Reader
ID odmaeindnajocepmmfjfconhggagbpnc
URL Chính Thức https://chromewebstore.google.com/detail/source-code-reader/odmaeindnajocepmmfjfconhggagbpnc
Mô tả This extension adds an Browse button to the toolbar which allows you to browse the current GitHub repo using Source Code Reader.
Kích Thước Tệp 7.3 KB
Số Lần Cài Đặt 797
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2013-05-18
Ngày Phát Hành 2013-05-18
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Trang Web Mở Rộng http://blog.appharbor.com/2012/08/07/source-code-reader-browse-source-code-online
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Source Code Reader",
    "version": "1.0",
    "description": "This extension adds an Browse button to the toolbar which allows you to browse the current GitHub repo using Source Code Reader.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs"
    ],
    "browser_action": {
        "default_title": "Browse Repo in Source Code Reader",
        "default_icon": "icon.png"
    },
    "manifest_version": 2
}